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
|
#!/usr/bin/make -f
# DH_VERBOSE := 1
export LC_ALL=C.UTF-8
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
include /usr/share/dpkg/architecture.mk
ifeq ($(DEB_HOST_ARCH_BITS),32)
DEB_CPPFLAGS_MAINT_APPEND = -DARCH_32
endif
export DEB_CPPFLAGS_MAINT_APPEND
%:
dh $@ --with sphinxdoc
override_dh_auto_clean:
dh_auto_clean
rm -rf $(CURDIR)/debian/sphinxdoc $(CURDIR)/debian/man
override_dh_auto_configure:
dh_auto_configure -- --with-capnp=/usr --with-gsl=/usr --prefix=$(CURDIR)/debian/tmp/usr
override_dh_auto_build:
dh_auto_build
sphinx-build doc/sphinx $(CURDIR)/debian/sphinxdoc
override_dh_installman:
mkdir -p $(CURDIR)/debian/man
asciidoctor -a docdate='' -b manpage $(CURDIR)/debian/man_src/*.adoc
cp $(CURDIR)/debian/man_src/*.? $(CURDIR)/debian/man
dh_installman --
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
ifeq ($(DEB_HOST_ARCH_BITS),32)
echo "Do not test for 32 bit archs since test results were calculated for 64 bit."
else
dh_auto_test --no-parallel
endif
endif
|