blob: d4ed221d807d970d63bf5f790a6c5bf71cd6244c (
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
|
# Maintainer Cédric Bellegarde
pkgname=passbook-next-git
pkgver=0.8.r6.gd894395
pkgrel=1
pkgdesc='Password manager for GNOME (dev branch)'
arch=(any)
url=https://gitlab.gnome.org/gnumdk/passbook
license=(GPL)
depends=(
appstream-glib
gtk3
python-cairo
python-gobject
)
makedepends=(
git
gobject-introspection
intltool
itstool
meson
)
optdepends=(
'python-pykeepass: Support for keepass files'
)
conflicts=("passbook" "passbook-git" "passbook-stable-git")
provides=("passbook")
source=("git+https://gitlab.gnome.org/gnumdk/passbook#branch=next")
pkgver() {
cd "$srcdir/passbook"
git describe --tags \
| sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
arch-meson passbook build \
--libexecdir='lib/passbook'
ninja -C build
}
package() {
DESTDIR="${pkgdir}" ninja -C build install
}
md5sums=('SKIP')
|