summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5271f48e0624bc18c677aa96d33b4607b1d58687 (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
# Contributor: Cédric Bellegarde <cedric.bellegarde@adishatz.org>

pkgname=passbook
pkgver=0.2
pkgrel=2
pkgdesc='A password manager for GNOME'
arch=('any')
url='https://gitlab.gnome.org/gnumdk/passbook'
license=('GPL')
depends=(
  'gtk3' 'python-cairo'
  'python-dbus' 'python-gobject'
)
optdepends=(
  'python-pykeepass'
)
makedepends=(
  'git' 'gobject-introspection' 'intltool' 'itstool' 'meson' 'python'
)
source=("git+https://gitlab.gnome.org/gnumdk/passbook.git#tag=${pkgver}")
sha256sums=('SKIP')

build() {
  arch-meson passbook build \
    --libexecdir='lib/passbook'
  ninja -C build
}

package() {
  DESTDIR="${pkgdir}" ninja -C build install
}

# vim: ts=2 sw=2 et: