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
|
#!/usr/bin/make -f
# Enable hardening build flags
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
export PYBUILD_NAME=geographiclib
include /usr/share/dpkg/pkg-info.mk
UPSTREAM_VERSION=$(shell echo $(DEB_VERSION_UPSTREAM) | sed -e 's/\+.*//')
%:
dh $@ --with python3,pkgkde_symbolshelper
override_dh_auto_clean:
dh_auto_clean
dh_auto_clean --buildsystem=pybuild --sourcedirectory=python
override_dh_auto_configure:
dh_auto_configure
dh_auto_configure --buildsystem=pybuild --sourcedirectory=python
override_dh_auto_build:
dh_auto_build
dh_auto_build --buildsystem=pybuild --sourcedirectory=python
override_dh_auto_test:
dh_auto_test
dh_auto_test --buildsystem=pybuild --sourcedirectory=python
override_dh_auto_install:
dh_auto_install
dh_auto_install --buildsystem=pybuild --sourcedirectory=python
override_dh_install:
# Remove duplicate license information
$(RM) debian/tmp/usr/share/doc/geographiclib/html/LICENSE.txt
$(RM) debian/tmp/usr/lib/*/node_modules/geographiclib/LICENSE.txt
# Remove duplicate files in docs
$(RM) debian/tmp/usr/share/doc/geographiclib/html/*/*.png
$(RM) debian/tmp/usr/share/doc/geographiclib/html/*/*.css
$(RM) debian/tmp/usr/share/doc/geographiclib/html/*/dynsections.js
# Remove .la files
$(RM) debian/tmp/usr/lib/*/libGeographic.la
# Remove MATLAB files
$(RM) -r debian/tmp/usr/share/matlab/
# Move Node.js module to /usr/share/nodejs
mkdir -p debian/tmp/usr/share/nodejs
$(RM) debian/tmp/usr/lib/*/node_modules/geographiclib/README.md
mv debian/tmp/usr/lib/*/node_modules/geographiclib debian/tmp/usr/share/nodejs
rmdir debian/tmp/usr/lib/*/node_modules
dh_install --list-missing
override_dh_installchangelogs:
dh_installchangelogs NEWS
override_dh_makeshlibs:
dh_makeshlibs -- -v$(UPSTREAM_VERSION) -c0
override_dh_strip:
dh_strip --dbgsym-migration='libgeographic-dbg (<< 1.49-2~)'
|