We don't use them anymore as we now completely rely on `anbox launch` to start the session manager. This lets us remove another part which can't be shipped inside the snap package.
34 lines
939 B
Makefile
Executable file
34 lines
939 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
VERSION=$(shell dpkg-parsechangelog -SVersion)
|
|
|
|
# include /usr/share/dpkg/default.mk
|
|
|
|
%:
|
|
dh $@ --parallel --fail-missing --with systemd
|
|
|
|
override_dh_auto_configure:
|
|
|
|
override_dh_auto_build:
|
|
|
|
override_dh_install:
|
|
VERSION=$(shell dpkg-parsechangelog -SVersion)
|
|
install -d $(CURDIR)/debian/tmp/usr/src
|
|
for d in ashmem binder ; do \
|
|
cp -a $(CURDIR)/kernel/$$d $(CURDIR)/debian/tmp/usr/src/anbox-modules-$$d-$(VERSION) ; \
|
|
done
|
|
|
|
install -d $(CURDIR)/debian/tmp/lib/udev/rules.d
|
|
install -m 0644 kernel/99-anbox.rules $(CURDIR)/debian/tmp/lib/udev/rules.d
|
|
|
|
install -d $(CURDIR)/debian/tmp/etc/modules-load.d
|
|
install -m 0644 kernel/anbox.conf $(CURDIR)/debian/tmp/etc/modules-load.d
|
|
|
|
install -d $(CURDIR)/debian/tmp/etc/X11/Xsession.d
|
|
install -m 0644 data/xsession.conf $(CURDIR)/debian/tmp/etc/X11/Xsession.d/68anbox
|
|
|
|
dh_install
|