osmo-pcap/debian/rules

27 lines
781 B
Plaintext
Raw Normal View History

2011-06-01 13:00:01 +00:00
#!/usr/bin/make -f
DEBIAN := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2)
DEBVERS := $(shell echo '$(DEBIAN)' | cut -d- -f1)
VERSION := $(shell echo '$(DEBVERS)' | sed -e 's/[+-].*//' -e 's/~//g')
#export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
2011-06-01 13:00:01 +00:00
2012-11-06 22:40:17 +00:00
# Maybe we require some moreadvanced testing in the future
PCAP_CFLAGS="-I/usr/include"
PCAP_LIBS="-lpcap"
2011-06-01 13:00:01 +00:00
%:
dh $@ --with autoreconf --fail-missing
2012-11-06 22:40:17 +00:00
override_dh_auto_configure:
dh_auto_configure -- \
--with-systemdsystemunitdir=/lib/systemd/system \
2012-11-06 22:40:17 +00:00
--with-pcap-config=/bin/false \
PCAP_CFLAGS=$(PCAP_CFLAGS) \
PCAP_LIBS=$(PCAP_LIBS)
2012-11-07 09:11:54 +00:00
override_dh_strip:
dh_strip -posmo-pcap-client --dbg-package=osmo-pcap-client-dbg
dh_strip -posmo-pcap-server --dbg-package=osmo-pcap-server-dbg