1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#!/usr/bin/make -f
# set this to the name of the main shlib's binary package
PACKAGE = libxtst6
%:
dh $@ --with quilt --builddirectory=build/
override_dh_auto_configure-indep: docflags = --enable-specs --with-xmlto --without-fop
override_dh_auto_configure-arch: docflags = --disable-specs
override_dh_auto_configure-arch override_dh_auto_configure-indep:
dh_auto_configure -- $(docflags) \
--docdir=\$${prefix}/share/doc/libxtst-dev
override_dh_install:
find debian/tmp/ -name '*.la' -exec rm '{}' ';'
dh_install
override_dh_makeshlibs:
dh_makeshlibs -a --add-udeb=$(PACKAGE)-udeb
|