1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#!/usr/bin/make -f
%:
dh ${@} --with autoreconf
override_dh_auto_clean:
dh_auto_clean
rm -f libextractor.pc libextractor.pc.in libextractor-uninstalled.pc libextractor-uninstalled.sh
override_dh_auto_configure:
dh_auto_configure -- --enable-exiv2 --disable-ffmpeg --disable-xpdf --with-qt
override_dh_auto_test:
# disabled
override_dh_auto_install:
dh_auto_install
# Removing useless files
rm -f debian/tmp/usr/lib/*/*.la
rm -f debian/tmp/usr/lib/*/libextractor/*.la
rm -f debian/tmp/usr/share/info/dir*
override_dh_install:
dh_install --fail-missing
override_dh_strip:
dh_strip --dbg-package=libextractor-dbg
override_dh_builddeb:
dh_builddeb -- -Zgzip -z9
|