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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#! /usr/bin/make -f
include /usr/share/dpkg/default.mk
export DH_OPTIONS
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
INSTDIR = debian/tmp
%:
dh $@ -Bbuild -Scmake --with python3
# deduce documentation option (build-indep target)
ifeq "" "$(filter %-doc,$(shell dh_listpackages))"
BUILDDOC = OFF
else
BUILDDOC = ON
endif
override_dh_auto_configure:
dh_auto_configure -- \
-DDOCS=$(BUILDDOC) \
-DCMAKE_BUILD_RPATH_USE_ORIGIN=ON \
-DPYTHON=ON
# https://github.com/AcademySoftwareFoundation/Imath/issues/226
override_dh_auto_test-arch:
dh_auto_test || true
override_dh_auto_build-indep:
dh_auto_build -- docs
# No tests needed for docs
override_dh_auto_test-indep:
override_dh_auto_install-indep:
# Since compat/13 only files for indep should installed:
dh_auto_install -- -C docs
pkg_lib = libimath-3-1-29
pkg_dev = libimath-dev
pkg_doc = libimath-doc
pkg_py = python3-imath
override_dh_install-indep:
rm -f $(INSTDIR)/usr/share/doc/Imath/sphinx/_static/doctools.js
rm -f $(INSTDIR)/usr/share/doc/Imath/sphinx/_static/jquery.js
rm -f $(INSTDIR)/usr/share/doc/Imath/sphinx/_static/language_data.js
rm -f $(INSTDIR)/usr/share/doc/Imath/sphinx/_static/searchtools.js
rm -f $(INSTDIR)/usr/share/doc/Imath/sphinx/_static/underscore.js
rm -f $(INSTDIR)/usr/share/doc/Imath/sphinx/.buildinfo
rm -rf $(INSTDIR)/usr/share/doc/Imath/sphinx/.doctrees
dh_install -p$(pkg_doc) usr/share/doc/Imath/sphinx/* usr/share/doc/libimath-doc/html
override_dh_install-arch:
# See #1004067
sed -i -e "s/FATAL_ERROR/STATUS/g" debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/cmake/Imath/ImathConfig.cmake
sed -i -e "s/FATAL_ERROR/STATUS/g" debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/cmake/Imath/ImathTargets.cmake
dh_numpy3 --package=$(pkg_py)
dh_install -p$(pkg_lib) debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libImath-3_1.so.29.5.0
dh_install -p$(pkg_lib) debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libImath-3_1.so.29
dh_install -p$(pkg_dev) debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libImath-3_1.so
dh_install -p$(pkg_dev) debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libImath.so
dh_install -p$(pkg_dev) debian/tmp/usr/include
dh_install -p$(pkg_dev) debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/cmake/
dh_install -p$(pkg_dev) debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig/
dh_install -p$(pkg_py) debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libPyImath_Python3_*-3_1.so
dh_install -p$(pkg_py) debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libPyImath_Python3_*-3_1.so.29
dh_install -p$(pkg_py) debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libPyImath_Python3_*-3_1.so.29.5.0
dh_install -p$(pkg_py) debian/tmp/usr/lib/python3/dist-packages/imath.so
dh_install -p$(pkg_py) debian/tmp/usr/lib/python3/dist-packages/imathnumpy.so
|