blob: df2231a846f74a02d88bdcd7accec326fe404d8a (
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
|
# Maintainer: Santiago Burgos <santiago.burgos1089@gmail.com>
# Co-Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=fingwit
pkgver=1.0.2
pkgrel=1
pkgdesc="Fingerprint Configuration Tool"
url="https://github.com/xapp-project/fingwit"
arch=('x86_64')
license=('GPL-3.0-or-later')
depends=(
'fprintd'
'gtk3'
'libfprint'
'pam'
'python'
'python-gobject'
'python-setproctitle'
'xapp'
)
makedepends=(
'meson'
'ninja'
)
source=("${pkgname}_${pkgver}.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('c574ccc686e4226f05632fc92d51b884dcd6751957a1c9861d8dc924a13299ed')
prepare(){
cd $pkgname-$pkgver
# Fix license path
# Dialog expands too wide
# sed -i 's|common-licenses/GPL|licenses/spdx/GPL-3.0-or-later.txt|g' "$pkgname"
}
build() {
arch-meson "$pkgname-$pkgver" build
meson compile -C build
}
package() {
meson install -C build --no-rebuild --destdir "$pkgdir"
}
|