2015-07-02 15:06:05 +08:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# -*- makefile -*-
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
export DH_VERBOSE=1
|
|
|
|
|
|
|
|
%:
|
2018-03-04 23:07:33 +08:00
|
|
|
dh $@
|
|
|
|
|
2020-02-16 20:58:27 +08:00
|
|
|
# Setting the build system is still required, because otherwise the GNUmakefile gets picked up
|
2018-03-04 23:07:33 +08:00
|
|
|
override_dh_auto_configure:
|
2020-02-14 23:28:13 +08:00
|
|
|
dh_auto_configure --buildsystem=cmake --parallel
|
2015-07-02 15:06:05 +08:00
|
|
|
|
|
|
|
override_dh_installdocs:
|
|
|
|
dh_installdocs --link-doc=fish
|
|
|
|
|
2017-01-07 17:53:57 +08:00
|
|
|
# Still needed until all platforms have debhelper 9.20151219
|
|
|
|
# Consider transitioning https://wiki.debian.org/DebugPackage
|
2015-07-02 15:06:05 +08:00
|
|
|
override_dh_strip:
|
|
|
|
dh_strip --dbg-package=fish-dbg
|