blob: 890a62c5141de4405b23832bb63460c62f3ad9ca (
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
|
_name='identities'
pkgname="$_name-git"
pkgver=0.1.2.r0.g251b147
pkgrel=1
pkgdesc="Modern password-store client made for GNOME"
arch=('any')
url="https://github.com/k8ieone/$_name"
license=('GPL-3.0-only')
depends=(
python3
python-gnupg
python-pyotp
)
makedepends=(
git
meson
blueprint-compiler
)
checkdepends=(
appstream-glib
desktop-file-utils
)
provides=(${_name})
conflicts=(
${_name}
)
source=(
"${_name}::git+$url"
)
sha512sums=('SKIP')
pkgver() {
cd "${_name}"
git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
arch-meson "$_name" build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
DESTDIR="${pkgdir}" meson install -C build
}
|