1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
#!/usr/bin/make -f
include /usr/share/dpkg/pkg-info.mk
#export DH_VERBOSE=1
%:
dh $@
override_dh_auto_build:
debian/test-correct-interface-order
override_dh_auto_test:
debian/test-normalization
execute_after_dh_install:
sed -i 's/^VERSION=.*/VERSION="$(DEB_VERSION)"/' debian/*/usr/sbin/resolvconf
override_dh_installinit:
dh_installinit --no-start
override_dh_installppp:
dh_installppp --name=000resolvconf
override_dh_installifupdown:
dh_installifupdown --name=resolvconf
dh_installifupdown --name=000resolvconf
execute_after_dh_installsystemd:
dh_installsystemd --name=resolvconf-pull-resolved
.PHONY: override_dh_auto_test override_dh_installinit
|