blob: eccd3b86a25c29398ab84a8c5410f4bd6dc8c9c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
# Maintainer: gugah <gugaboy at rocketmail dot com>
# Contributor: Alex Richards <aur@alxr.uk>
# Contributor: Davide Depau <davide@depau.eu>
_pkgname=libfprint
pkgname="$_pkgname-vfs009x-git"
pkgver=1.94.9.r2.g450e6ae
pkgrel=1
pkgdesc="Library for fingerprint readers (includes libre vfs0090 and vfs0097 driver)"
url="https://gitlab.archlinux.org/gugah/libfprint"
license=('LGPL-2.1-or-later')
arch=('x86_64')
depends=(
gcc-libs
glib2
glibc
libgudev
libgusb
pixman
openssl-1.1
nss
)
makedepends=(
git
glib2-devel
gobject-introspection
gtk-doc
meson
python-cairo
python-gobject
systemd
)
checkdepends=(
cairo
umockdev
)
optdepends=(
'fprintd: D-Bus daemon that manages fingerprint readers'
'validity-sensors-tools: Flash, factory reset and pair Validity fingerprint sensors 009x'
'gtk3: (make) Build GTK-based demos'
)
provides=(
"$_pkgname=$pkgver"
'libfprint-2.so'
)
groups=(fprint)
conflicts=("$_pkgname")
source=(
"git+$url.git#branch=vfs009x"
"0001-VFS0097-Update-vfs0090.h.patch"
"0002-60-libfprint-2-tod-vfs0090.rules"
)
sha256sums=(
'SKIP'
'f654336348497743802bef027aa346db5456c0f3407054d821829cc482c6b50f'
'd9553a8a1e4b64617214820b758a807cda593704504bcfeb04dcddeefdf46ee4'
)
# Build options
_build_doc=${BUILD_DOC:-false}
_build_examples=${BUILD_EXAMPLES:-false}
_build_tests=${BUILD_TESTS:-false}
prepare() {
cd "$srcdir/$_pkgname"
# Initialize the vfs0090 submodule
git submodule update --init --recursive
local _patch97=0
printf "Determining VFS device type...\n"
if [[ "${VFS0097:-}" == "1" ]]; then
_patch97=1
printf "Applying patch for 138a:0097 (VFS0097=1 environment variable)\n"
elif [[ "${VFS0097:-}" == "0" ]]; then
_patch97=0
printf "Building for 138a:0090 (VFS0097=0 environment variable)\n"
elif command -v lsusb >/dev/null 2>&1 && lsusb | grep -q "138a:0097"; then
_patch97=1
printf "VFS0097 fingerprint reader detected - applying patch for 138a:0097\n"
printf "To build for 138a:0090 instead, set VFS0097=0\n"
else
_patch97=0
printf "Building for 138a:0090 (default)\n"
printf "To enable patches for 138a:0097, set VFS0097=1\n"
fi
if [[ "$_patch97" == "1" ]]; then
printf "Applying VFS0097 patch...\n"
cd libfprint/drivers/vfs0090
if ! patch -Np1 < "$srcdir/0001-VFS0097-Update-vfs0090.h.patch"; then
printf "Failed to apply VFS0097 patch\n" >&2
return 1
fi
fi
}
pkgver() {
cd "$srcdir/$_pkgname"
git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' --exclude='*_*' \
| sed -E 's/^[^0-9]*//;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
# Set PKG_CONFIG_PATH to prefer OpenSSL 1.1's .pc files
export PKG_CONFIG_PATH="/usr/lib/openssl-1.1/pkgconfig${PKG_CONFIG_PATH:+:}$PKG_CONFIG_PATH"
# Prepend OpenSSL 1.1 include and lib paths to CFLAGS, CPPFLAGS, and LDFLAGS
export CFLAGS="-I/usr/include/openssl-1.1 ${CFLAGS}"
export CPPFLAGS="-I/usr/include/openssl-1.1 ${CPPFLAGS}"
export LDFLAGS="-L/usr/lib/openssl-1.1 ${LDFLAGS}"
local _meson_opts=(
-D drivers=all
-D doc="$_build_doc"
-D gtk-examples="$_build_examples"
-D installed-tests="$_build_tests"
-D udev_rules_dir=/usr/lib/udev/rules.d
-D udev_hwdb_dir=/usr/lib/udev/hwdb.d
)
cd "$srcdir"
arch-meson "$_pkgname" build "${_meson_opts[@]}"
meson compile -C build
}
check() {
cd "$srcdir"
# meson test -C build --print-errorlogs || printf "Some tests failed (expected without hardware)\n"
}
package() {
cd "$srcdir"
meson install -C build --destdir "$pkgdir"
install -Dm644 "$srcdir/0002-60-libfprint-2-tod-vfs0090.rules" \
"$pkgdir/usr/lib/udev/rules.d/60-libfprint-2-tod-vfs0090.rules"
# Install documentation if built
if [[ "$_build_doc" == "true" ]]; then
install -dm755 "$pkgdir/usr/share/doc/$pkgname"
fi
}
|