#! /usr/bin/make -f include /usr/share/dpkg/architecture.mk ifneq (,$(filter $(DEB_HOST_ARCH_OS),hurd)) DEB_CPPFLAGS_MAINT_APPEND = -DPATH_MAX=4096 override_dh_auto_test: : tests fail on Hurd due to a kyua crash -dh_auto_test || cat debian/.debhelper/generated/_source/home/.kyua/logs/kyua.*.log endif export DEB_BUILD_MAINT_OPTIONS = hardening=+all DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/buildflags.mk ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) SET_PKG_CONFIG = PKG_CONFIG=$(DEB_HOST_GNU_TYPE)-pkg-config GCC = $(DEB_HOST_GNU_TYPE)-gcc else GCC = gcc endif SYSTEM_LIBDIRS := $(shell for opt in '' $$($${CC-$(GCC)} -print-multi-lib | sed -n -e's/.*;@/-/p'); do \ $(GCC) $$opt -print-search-dirs | sed -n -e's/^libraries: =//p' \ | sed -e's/:/\n/g' | xargs -n1 readlink -f | grep -v 'gcc\|/[0-9.]\+$$'; \ done | LC_ALL=C sort -u | tr '\n' : | sed 's/:$$//') %: dh $@ override_dh_auto_configure: ifneq "$(wildcard /usr/share/misc/config.sub)" "" cp -f /usr/share/misc/config.sub config.sub endif ifneq "$(wildcard /usr/share/misc/config.guess)" "" cp -f /usr/share/misc/config.guess config.guess endif $(SET_PKG_CONFIG) dh_auto_configure -- --prefix=/usr \ --mandir=\$${prefix}/share/man \ --infodir=\$${prefix}/share/info \ --with-pkg-config-dir=/usr/local/lib/$(DEB_HOST_MULTIARCH)/pkgconfig:/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig \ --with-system-libdir=$(SYSTEM_LIBDIRS) override_dh_auto_install: dh_auto_install chmod +x debian/pkg-config-crosswrapper debian/pkgconf-dpkghook rm debian/tmp/usr/lib/*/*.la echo $(DEB_HOST_MULTIARCH) > debian/pkgconf/usr/lib/pkgconf.multiarch override_dh_installchangelogs: dh_installchangelogs NEWS .PHONY: override_dh_auto_configure override_dh_auto_install