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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#!/usr/bin/make -f
# Made with the aid of dh_make, by Craig Small
# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
# Some lines taken from debmake, by Cristoph Lameter.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This has to be exported to make some magic below work.
export DH_OPTIONS
# Enable hardening build flags
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
DEB_HOST_MULTIARCH?=$(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
include /usr/share/dpkg/pkg-info.mk
UPSTREAM_VERSION = $(shell echo $(DEB_VERSION_UPSTREAM) | sed -e 's/\+.*//')
datumgrids: datumgrids-stamp
datumgrids-stamp:
TZ=UTC unshar -c -d $(CURDIR)/data $(CURDIR)/debian/datumgrids.shar
TZ=UTC unshar -c -d $(CURDIR)/data $(CURDIR)/debian/datumgrids-ch.shar
touch $@
%:
if [ "$@" != "datumgrids" -a "$@" != "datumgrids-stamp" ]; then \
dh $@ ; \
fi
execute_before_dh_auto_clean:
( cd $(CURDIR)/data && cat $(CURDIR)/debian/datumgrids.list $(CURDIR)/debian/datumgrids-ch.list | xargs rm -f )
override_dh_auto_configure: datumgrids
dh_auto_configure -- -DCMAKE_BUILD_RPATH_USE_ORIGIN=ON \
-DRUN_NETWORK_DEPENDENT_TESTS=OFF
override_dh_auto_test:
# Ignore test failures on problematic architectures only
ifneq (,$(filter $(DEB_BUILD_ARCH),i386 hppa hurd-i386 powerpc))
dh_auto_test || echo "Ignoring test failures"
else
dh_auto_test
endif
execute_after_dh_auto_install:
# Explicitly remove files
$(RM) $(CURDIR)/debian/*/usr/share/doc/proj/AUTHORS
$(RM) $(CURDIR)/debian/*/usr/share/doc/proj/COPYING
$(RM) $(CURDIR)/debian/*/usr/share/doc/proj/NEWS
override_dh_installdocs:
dh_installdocs -A AUTHORS.md NEWS.md README.md
override_dh_makeshlibs:
dh_makeshlibs -- -c0 -v$(UPSTREAM_VERSION)
|