1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/make -f
export DH_VERBOSE = 1
include /usr/share/dpkg/buildopts.mk
export PYBUILD_NAME=pyobjcryst
export DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
export DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
export PYBUILD_SYSTEM=custom
export PYBUILD_BEFORE_BUILD=mkdir -p debian/$(PYBUILD_NAME)
export PYBUILD_BUILD_ARGS=scons $(DEB_BUILD_OPTION_PARALLEL:%=-j %) python=/usr/bin/{interpreter} build=debug prefix=debian/$(PYBUILD_NAME) develop
export PYBUILD_INSTALL_ARGS=scons python=/usr/bin/{interpreter} build=debug prefix=debian/$(PYBUILD_NAME) install
export PYBUILD_TEST_ARGS=PYTHONPATH=src scons python=/usr/bin/{interpreter} build=debug prefix=debian/$(PYBUILD_NAME) test
%:
dh $@ --with numpy3 --buildsystem=pybuild
execute_after_dh_auto_clean:
$(RM) -r src/pyobjcryst/version.cfg src/pyobjcryst.egg-info/ .pybuild build/
$(RM) -r .sconf_temp/ .sconsign.dblite config.log src/pyobjcryst/_pyobjcryst.so
find . -name "*.pyc" -delete
$(RM) -r dist src/pyobjcryst/_pyobjcryst.* .pytest_cache/ debian/$(PYBUILD_NAME)
|