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
# DH_VERBOSE := 1
include /usr/share/dpkg/pkg-info.mk
UPSTREAM_VERSION = $(shell echo $(DEB_VERSION_UPSTREAM) | sed -e 's/\+.*//')
export DEB_BUILD_MAINT_OPTIONS=hardening=+all optimize=+lto
export PYBUILD_NAME=lerc
%:
dh $@ --buildsystem=cmake
override_dh_auto_clean:
dh_auto_clean
dh_auto_clean --builddirectory build-static
if command -v pybuild >/dev/null; then dh_auto_clean --buildsystem=pybuild --sourcedirectory=OtherLanguages/Python; fi
override_dh_auto_configure:
dh_auto_configure
dh_auto_configure --builddirectory build-static -- -DBUILD_SHARED_LIBS=FALSE
override_dh_auto_build:
dh_auto_build
dh_auto_build --builddirectory build-static
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
env LD_LIBRARY_PATH=$(shell dirname $(CURDIR)/*/libLerc.so) PYTHONPATH=$(CURDIR)/OtherLanguages/Python \
python3 -c "import lerc; assert lerc.test() == 0"
endif
execute_after_dh_auto_install:
dh_auto_install --builddirectory build-static
override_dh_auto_install-indep:
dh_auto_install --buildsystem=pybuild -ppython3-lerc --sourcedirectory=OtherLanguages/Python
# Ubuntu wants the build to fail when symbols disappear
override_dh_makeshlibs:
ifneq ($(shell dpkg-vendor --query vendor),Ubuntu)
dh_makeshlibs -- -v$(UPSTREAM_VERSION) -c0
else
dh_makeshlibs -- -v$(UPSTREAM_VERSION)
endif
override_dh_numpy3:
dh_numpy3 -p python3-lerc
|