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
|
#!/usr/bin/make -f
export DEB_CFLAGS_MAINT_APPEND := -Wall
export DEB_CXXFLAGS_MAINT_APPEND := -Wall
export DEB_LDFLAGS_MAINT_APPEND := -Wl,-z,defs -Wl,--as-needed
export DEB_BUILD_MAINT_OPTIONS := hardening=+all
include /usr/share/dpkg/pkg-info.mk
# For the repack: package name, mangled upstream version, non-free files
UVERNODFSG = $(subst +dfsg,,$(DEB_VERSION_UPSTREAM))
override_dh_auto_configure:
dh_auto_configure --verbose -- \
--enable-shared --enable-static \
--with-jpeg --with-png --with-tiff \
--with-zlib --without-java LIBS="-lm"
override_dh_auto_install:
dh_auto_install --verbose
# Clear the rpath set on some architectures (e.g. amd64)
chrpath -d $(CURDIR)/debian/tmp/usr/bin/* \
$(CURDIR)/debian/tmp/usr/lib/*/*.so
rm -vf $(CURDIR)/debian/tmp/usr/lib/*/*.la
override_dh_makeshlibs:
dh_makeshlibs -- -c4
override_dh_autoreconf:
dh_autoreconf --as-needed
%:
dh $@
|