1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DPKG_GENSYMBOLS_CHECK_LEVEL = 4
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- \
-Dauto_features=enabled \
-Denable-gtk-doc=true \
-Dlibsoup-abi='3.0' \
-Dwith-usb-ids-path=/usr/share/misc/usb.ids \
-Dwith-pci-ids-path=/usr/share/misc/pci.ids \
$(NULL)
override_dh_auto_test:
# disable the style tests, which are mostly for upstream development
# specify a timeout multiplier: some tests may take a long time on slow archs
dh_auto_test -- --no-suite style --timeout-multiplier 3
|