1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/make -f
# Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
# Date: Tue, 26 Aug 2008 14:24:50 -0400
# make sure dh_makeshlibs does not modify post{inst,rm} scripts:
# (avoids lintian's postinst-has-useless-call-to-ldconfig)
binary:
dh binary --before dh_makeshlibs
dh_makeshlibs --noscripts
dh binary --after dh_makeshlibs
# don't bother with "make test" because faketime's test suite isn't
# currently designed for automated evaluation (just prints strings of
# text and expects a human to interpret), which is useless on the
# autobuilders.
build:
dh build --before dh_auto_test
dh build --after dh_auto_test
%:
dh $@
|