This repository has been archived on 2024-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
2013-10-11 23:07:35 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@ --with autotools-dev --parallel --builddirectory=debian/build
|
|
|
|
|
|
|
|
.PHONY: override_dh_auto_configure
|
|
|
|
override_dh_auto_configure:
|
|
|
|
dh_auto_configure -- \
|
|
|
|
--enable-vala --enable-gtk-doc --enable-debug --enable-install
|
|
|
|
|
|
|
|
.PHONY: override_dh_strip
|
|
|
|
override_dh_strip:
|
|
|
|
dh_strip --dbg-package=libhedera-dbg
|
|
|
|
|
2013-11-21 15:35:55 +00:00
|
|
|
# Overridden to avoid lintian warnings about postinst/postrm
|
2013-10-11 23:07:35 +00:00
|
|
|
.PHONY: override_dh_makeshlibs
|
|
|
|
override_dh_makeshlibs:
|
|
|
|
dh_makeshlibs --noscripts
|