2015-07-02 15:06:05 +08:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# -*- makefile -*-
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
export DH_VERBOSE=1
|
|
|
|
|
|
|
|
# dpkg-dev 1.16.1 doesn't export buildflags
|
|
|
|
# can be removed once on dh compat level 9
|
|
|
|
DPKG_EXPORT_BUILDFLAGS = 1
|
|
|
|
-include /usr/share/dpkg/buildflags.mk
|
2016-12-01 12:37:33 +08:00
|
|
|
DEB_DISTRIBUTION = $(shell dpkg-parsechangelog | sed -n -e 's/^Distribution: //p')
|
2015-07-02 15:06:05 +08:00
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@ --with autotools-dev,autoreconf
|
|
|
|
|
|
|
|
override_dh_installdocs:
|
|
|
|
dh_installdocs --link-doc=fish
|
|
|
|
|
|
|
|
override_dh_strip:
|
|
|
|
dh_strip --dbg-package=fish-dbg
|
|
|
|
|
|
|
|
# Don't run tests; they don't work until fish is installed
|
|
|
|
override_dh_auto_test:
|