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
|
#!/usr/bin/make -f
# Copyright 2020 Joachim Zobel <jz-2017@heute-morgen.de>
export SOURCE_DATE_EPOCH = $(shell date -d "$$(dpkg-parsechangelog -SDate)" +%s)
export FORCE_SOURCE_DATE = 1
export LC_ALL = C
debian/gaproot/pkg:
mkdir -p debian/gaproot/pkg
ln -s ../../.. debian/gaproot/pkg/HAP
doc: debian/gaproot/pkg
make -C doc && touch doc
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
execute_after_dh_auto_test: debian/gaproot/pkg
export POLYMAKE_USER_DIR=$$(mktemp -d /tmp/gap-hap4polymakeXXXXXXXX); \
gap -q -l 'debian/gaproot;/usr/share/gap' < tst/testall.g \
| tee debian/gap.tst && rm -rf $$POLYMAKE_USER_DIR
grep -q "^#I No errors detected while testing" debian/gap.tst
endif
execute_after_dh_auto_build: doc;
execute_before_dh_install:
make -C doc install DESTDIR=../debian/gap-hap
override_dh_installdocs:
dh_installdocs README.md
override_dh_installchangelogs:
dh_installchangelogs
clean:
dh_testdir
dh_testroot
make -C doc clean
find . -name '*.swp' -delete
rm -rf debian/gaproot
rm -f debian/gap.tst
chmod a-x lib/Perturbations/Gcomplexes/*.gz
chmod a-x lib/Perturbations/Gcomplexes/bsSL2Z
chmod a-x lib/Khaled/init.g
chmod -R a-x,a+X lib/Kelvin
dh_clean
%:
dh $@
.PHONY: execute_after_dh_auto_test execute_after_dh_auto_build clean execute_after_dh_install override_dh_installdocs override_dh_installchangelogs
|