blob: 87f6ed5b82e1e253bf15861513e7f0f39d002582 (
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
|
# Maintainer:
# Contributor: MichaĆ Lisowski <lisu@riseup.net>
# Contributor: Thomas Hebb <tommyhebb@gmail.com>
# Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=revelation
pkgver=0.5.5
pkgrel=2
pkgdesc="Password manager for the GNOME desktop"
url="https://github.com/mikelolasagasti/revelation"
license=('GPL')
arch=('x86_64')
depends=(
gtk3
libpwquality
python-defusedxml
python-gobject
python-pycryptodomex
)
makedepends=(
gobject-introspection
meson
)
_pkgsrc="$pkgname-$pkgver"
_pkgext="tar.xz"
source=(
"$url/releases/download/$_pkgsrc/$_pkgsrc.$_pkgext")
sha256sums=(
'a20c4191595466dc90b90b0f7c4615a599974327152a4d2af87f506134ddce8f'
)
build() {
arch-meson "$_pkgsrc" build
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}
|