mirror of
https://gitlab.freedesktop.org/libfprint/libfprint.git
synced 2026-06-11 02:28:05 +00:00
cafa248fed
debian/rules: Remove the *.private fields of libfprint.pc, these are not needed anymore as we are not installing a static library Closes: #906975
18 lines
413 B
Makefile
Executable File
18 lines
413 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
# Configuration arguments
|
|
CONFIG_ARGS = -Dudev_rules_dir=/lib/udev/rules.d
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- $(CONFIG_ARGS)
|
|
|
|
override_dh_install:
|
|
mv debian/tmp/lib/udev/rules.d/60-fprint-autosuspend.rules \
|
|
debian/tmp/lib/udev/rules.d/60-libfprint0.rules
|
|
sed -i '/^Requires.private\|^Libs.private/ d' \
|
|
debian/tmp/usr/lib/*/pkgconfig/libfprint.pc
|
|
dh_install
|