summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3c1426d87b2782edb14e69e2eec7e7a84bea594e (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
# Maintainer: begin-theadventure <begin-thecontact.ncncb at dralias dot com>

pkgname=forgetpass
pkgver=1.0.17
_commit=3255be06cb47eaf6d838073f7b975c48e4f489cb
pkgrel=1
pkgdesc='Simple password generator for websites'
url="https://github.com/alexkdeveloper/forgetpass"
license=('GPL-3.0-or-later')
arch=('x86_64' 'aarch64')
depends=('libadwaita' 'libgee')
makedepends=('git' 'meson' 'vala')
checkdepends=('appstream-glib')
source=("git+$url.git#commit=$_commit")
sha256sums=('SKIP')

build() {
  arch-meson $pkgname build
  meson compile -C build
}

check() {
  meson test -C build --print-errorlogs || :
}

package() {
  meson install -C build --destdir "$pkgdir"
  ln -s com.github.alexkdeveloper.$pkgname "$pkgdir/usr/bin/$pkgname"
}