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 32 33 34 35 36 37 38 39 40 41 42
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# Enable all hardening options.
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic -D_REENTRANT
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
# Variables used by cdbs
DEB_COMPRESS_EXCLUDE = html
override_dh_auto_configure:
cp $(CURDIR)/debian/custom_dir_EXIF_GPS.tiff \
$(CURDIR)/test/images/
dh_auto_configure -- \
--with-docdir="\$${prefix}/share/doc/libtiff-doc" \
--libdir="\$${prefix}/lib/$(DEB_HOST_MULTIARCH)" \
--includedir="\$${prefix}/include/$(DEB_HOST_MULTIARCH)" \
--enable-ld-version-script \
--enable-docs
override_dh_auto_test:
dh_auto_test --max-parallel=1
override_dh_install:
dh_install -X.la
# tiffgt is in libtiff-opengl so libtiff-tools doesn't have to have
# all the X and opengl dependencies.
$(RM) debian/libtiff-tools/usr/bin/tiffgt
$(RM) debian/libtiff-tools/usr/share/man/man1/tiffgt.1*
override_dh_missing:
dh_missing --list-missing
%:
dh $@ --with autoreconf
.PHONY: override_dh_auto_configure override_dh_auto_test \
override_dh_install override_dh_missing
|