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
|
#!/usr/bin/make -f
export DPKG_EXPORT_BUILDFLAGS = 0
include /usr/share/dpkg/architecture.mk
%:
dh $@ --with python3 --buildsystem=cmake --builddirectory=build
override_dh_auto_build-arch:
dh_auto_build --parallel
override_dh_auto_build-indep:
echo "Building docs"
dh_auto_build -- docs
override_dh_auto_install:
if [ -f ./build/src/libgraphite2.so.3 ]; then \
dh_auto_install; \
else \
for v in `py3versions -v -s`; do \
python$$v setup.py -v install --prefix=/usr --root=$(CURDIR)/debian/python3-graphite2; \
done; \
dh_install -plibgraphite2-doc --sourcedir=$(CURDIR); \
fi
override_dh_auto_test:
if [ -f ./build/src/libgraphite2.so.3 ]; then \
dh_auto_test; \
fi
override_dh_auto_clean:
-find . -name "CTestCostData.txt" | xargs rm
-find . -name "LastTest.log" | xargs rm
rm -f tests/graphite.pyc
rm -rf tests/__pycache__
rm -f python/graphite2/__pycache__/__init__.cpython-37.pyc
rm -rf python/graphite2.egg-info
dh_auto_clean
override_dh_auto_configure:
dh_auto_configure -- -DCMAKE_BUILD_TYPE:STRING=Release -DGRAPHITE2_NTRACING:BOOL=ON -DLIB_SUFFIX=/$(DEB_HOST_MULTIARCH) -DPYTHON_EXECUTABLE=$(shell which python3)
find . -type f ! -name "rules" ! -name "changelog" \
-exec sed -i -e 's/\-O3//g' {} \;
override_dh_strip:
dh_strip --ddeb-migration="libgraphite2-3-dbg (<= 1.3.4-1)"
|