1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/usr/bin/make -f
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
%:
dh $@ --with autoreconf,python3
override_dh_auto_configure:
dh_auto_configure -- --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \
--with-module-bindir=\$${prefix}/lib/speech-dispatcher-modules \
pidpath=/var/run/speech-dispatcher/
override_dh_strip:
dh_strip --dbg-package=speech-dispatcher-dbg
override_dh_installinit:
dh_installinit -a --error-handler=true
override_dh_fixperms:
dh_fixperms
chmod 700 $(CURDIR)/debian/speech-dispatcher/var/log/speech-dispatcher
override_dh_makeshlibs:
dh_makeshlibs -plibspeechd2
|