2025-02-09 06:31:23 +01:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
|
2025-02-09 06:38:33 +01:00
|
|
|
upstream:
|
|
|
|
rm -f debian/local/dnstap.proto
|
|
|
|
wget https://raw.githubusercontent.com/dnstap/dnstap.pb/master/dnstap.proto -O debian/local/dnstap.proto
|
|
|
|
|
2025-02-09 06:31:23 +01:00
|
|
|
%:
|
|
|
|
dh ${@}
|
|
|
|
|
|
|
|
execute_after_dh_auto_clean:
|
2025-02-09 06:35:38 +01:00
|
|
|
rm -f src/dnstap.pb/dnstap.proto
|
2025-02-09 06:31:23 +01:00
|
|
|
|
2025-02-09 06:39:22 +01:00
|
|
|
# remove generated files
|
|
|
|
rm -f src/dnstap.pb-c.h
|
|
|
|
|
2025-02-09 06:31:23 +01:00
|
|
|
execute_after_dh_auto_configure:
|
2025-02-09 06:36:40 +01:00
|
|
|
mkdir -p src/dnstap.pb
|
2025-02-09 06:35:38 +01:00
|
|
|
ln -s ../../debian/local/dnstap.proto src/dnstap.pb/dnstap.proto
|
2025-02-09 06:31:23 +01:00
|
|
|
|
|
|
|
execute_after_dh_auto_install:
|
|
|
|
# removing unused files
|
|
|
|
rm -f debian/tmp/usr/lib/*/*.la
|
|
|
|
rm -f debian/tmp/usr/share/doc/*/README.md
|