blob: a712cbd70272090fea87e2f0cfc9ab9cbd38d828 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export DPKG_EXPORT_BUILDFLAGS=1
export DEB_BUILD_MAINT_OPTIONS=hardening=+bindnow,-pie
include /usr/share/dpkg/buildflags.mk
%:
dh $@ --without systemd,autoreconf
override_dh_auto_configure:
# Use dependency installation for missing dependencies, zstd in particular.
# These will be statically linked.
dh_auto_configure -- --install-deps
override_dh_strip:
dh_strip --dbg-package=librdkafka1-dbg
|