1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
%:
dh $@
# See https://bugs.debian.org/908017 for --enable-more-warnings
override_dh_auto_configure:
[ -f ./configure ] || ./autogen.sh
dh_auto_configure -- \
--disable-static \
--without-libnm-glib \
--enable-more-warnings=yes
override_dh_makeshlibs:
dh_makeshlibs -X/usr/lib/$(DEB_HOST_MULTIARCH)/NetworkManager/
execute_before_dh_install:
find debian/tmp -name '*.la' -print -delete
|