blob: d7caa451dea8e66c6af8b0c8d9a4a7109526690c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
%:
dh $@
override_dh_install:
dh_install
find debian/tmp/lib/security -type f \
\( -name '*.a' -o -name '*.la' \) \
-exec rm '{}' +
get-orig-source:
uscan --noconf --force-download --rename --download-current-version --destdir=..
|