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
|
#!/usr/bin/make -f
EXTRA_CMAKE_VARIABLES = \
CMAKE_INSTALL_LIBDIR=lib \
RANGE_V3_HEADER_CHECKS=ON \
RANGES_NATIVE=OFF \
RANGES_VERBOSE_BUILD=ON
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- $(EXTRA_CMAKE_VARIABLES:%=-D%)
# Range-v3 is header library so we should make only online documentation unless
# the `nodoc` flag is specified.
override_dh_auto_build:
ifeq (,$(filter nodoc, $(DEB_BUILD_OPTIONS)))
dh_auto_build -- range-v3-doc
endif
# The `test` target doesn't compile tests by itself and fails if they aren't
# built before. Build the tests if only the `nocheck` flag is absent.
override_dh_auto_test:
# tests fail to build: https://github.com/ericniebler/range-v3/issues/1829
#dh_auto_build
#dh_auto_test
override_dh_installchangelogs:
dh_installchangelogs doc/release_notes.md
|