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
|
#!/usr/bin/make -f
# DH_VERBOSE := 1
export LC_ALL=C.UTF-8
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
# Work around against the following warning that cropped up with gcc 13.1.0:
# vbz/vbz.cpp:314:17: error: possibly dangling reference to a temporary
export DEB_CXXFLAGS_MAINT_APPEND = -Wno-error=dangling-reference
include /usr/share/dpkg/default.mk
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release \
-DENABLE_CONAN=OFF \
-DENABLE_PERF_TESTING=OFF \
-DENABLE_PYTHON=OFF
override_dh_install__not_possible_since_no_static_lib:
dh_install
d-shlibmove --commit \
--multiarch \
--devunversioned \
--exclude-la \
--override s/libzstd1-dev/libzstd-dev/ \
debian/tmp/usr/lib/*/*.so
|