mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2026-06-11 18:38:07 +00:00
4f14b6e5b0
libfprint (1:1.90.7+git20210222+tod1-0ubuntu2) hirsute; urgency=medium
.
* Disable lto for now, failing test
ibfprint:unit-tests+tod+fake_test_dev_tod_current / fpi-device-tod-fake_test_dev_tod_current
23 lines
439 B
Makefile
Executable File
23 lines
439 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = optimize=-lto
|
|
|
|
export DPKG_GENSYMBOLS_CHECK_LEVEL = 2
|
|
|
|
BUILDDIR = $(CURDIR)/obj-$(DEB_HOST_GNU_TYPE)
|
|
|
|
# Configuration arguments
|
|
CONFIG_ARGS = \
|
|
-Dudev_hwdb_dir=/lib/udev/hwdb.d \
|
|
-Ddrivers=all \
|
|
-Dgtk-examples=false
|
|
|
|
%:
|
|
dh $@ --with gir
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- $(CONFIG_ARGS)
|
|
|
|
override_dh_auto_test:
|
|
dh_auto_test -- -C $(BUILDDIR) --timeout-multiplier 5
|