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
|
#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
ifneq (,$(filter $(DEB_BUILD_ARCH),i386))
export DEB_CFLAGS_MAINT_APPEND += -ffloat-store
endif
# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk
export PYBUILD_NAME=cutadapt
%:
dh $@ --with python3 --buildsystem=pybuild
override_dh_install:
dh_install
mkdir -p debian/cutadapt/usr/bin
mv debian/python3-cutadapt/usr/bin/cutadapt debian/cutadapt/usr/bin/
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
dh_auto_test -- --test-pytest
endif
override_dh_auto_clean:
dh_auto_clean
rm -rf src/cutadapt.egg-info/ .pytest_cache
rm -f src/cutadapt/_version.py
rm -rf .eggs
# cython-generated files
rm -f src/cutadapt/_align.c src/cutadapt/qualtrim.c
|