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
|
#!/usr/bin/make -f
# -*- makefile -*-
export PYBUILD_NAME = pycodcif
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@ --with python2,python3 --no-parallel
override_dh_auto_build:
dh_auto_build
dh_auto_build -O--buildsystem=pybuild -- --dir src/components/pycodcif
override_dh_auto_install:
dh_auto_install -- PREFIX=$(CURDIR)/debian/tmp/usr
dh_auto_install -O--buildsystem=pybuild -- --dir src/components/pycodcif
override_dh_install-arch:
for TPL in debian/templates/*; \
do sed -e "s@##DEB_HOST_MULTIARCH##@$(DEB_HOST_MULTIARCH)@g" \
$${TPL} > debian/$$(basename $${TPL}); \
done
rm $(CURDIR)/debian/tmp/usr/bin/cif_parse_old_star doc/man/cif_parse_old_star.1
dh_install
rm -rf $(CURDIR)/debian/cod-tools/usr/share/perl5/COD/CIF/Parser
rm $(CURDIR)/debian/cod-tools/usr/share/perl5/COD/Precision.pm
rm $(CURDIR)/debian/cod-tools/usr/share/perl5/COD/UserMessage.pm
override_dh_installchangelogs:
dh_installchangelogs CHANGELOG
override_dh_clean:
dh_clean
for TPL in debian/templates/*; \
do rm -f debian/$$(basename $${TPL}); \
done
rm -rf .pybuild
|