32 lines
781 B
Plaintext
32 lines
781 B
Plaintext
|
#!/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)/$$d $(CURDIR)/debian/tmp/usr/src/anbox-modules-$$d-$(VERSION) ; \
|
||
|
done
|
||
|
|
||
|
install -d $(CURDIR)/debian/tmp/lib/udev/rules.d
|
||
|
install -m 0644 99-anbox.rules $(CURDIR)/debian/tmp/lib/udev/rules.d
|
||
|
|
||
|
install -d $(CURDIR)/debian/tmp/etc/modules-load.d
|
||
|
install -m 0644 anbox.conf $(CURDIR)/debian/tmp/etc/modules-load.d
|
||
|
|
||
|
dh_install
|