summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 67f809af40457ee7600e22acb47505f2be028cbe (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=dice
pkgname=$_pkgname-gtk4
pkgver=1.0.9
pkgrel=1
pkgdesc='A simple dice game'
url="https://github.com/alexkdeveloper/dice"
arch=('x86_64' 'aarch64')
license=('GPL3')
depends=('libadwaita')
makedepends=('git' 'meson' 'vala')
checkdepends=('appstream-glib')
source=("git+$url.git#tag=$pkgver")
sha256sums=('SKIP')

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

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

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