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
|
#!/usr/bin/make -f
# debian/rules for osm2pgsql
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# Enable hardening build flags
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
# Verbose test output
export VERBOSE=1
CFLAGS += $(CPPFLAGS) -DNDEBUG
CXXFLAGS += $(CPPFLAGS) -DNDEBUG
%:
dh $@ --buildsystem cmake
override_dh_auto_configure:
dh_auto_configure -- -DEXTERNAL_LIBOSMIUM=ON \
-DEXTERNAL_PROTOZERO=ON
override_dh_auto_test:
dh_auto_test || echo "Ignoring test failures"
override_dh_install:
dh_install --list-missing
override_dh_compress:
# clean up some naive file permissions
dh_compress -X.php -X.sql -X.js -X.c -X.h
|