blob: 0d38a0ee23efc2959bfa736e8bd2d1f5ecf739b0 (
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
|
# Maintainer: Igor Dyatlov <dyatlov.igor@protonmail.com>
pkgname=millionaire
pkgver=1.0.2
pkgrel=1
pkgdesc="Who Wants to Be a Millionaire game"
arch=('x86_64' 'aarch64')
url="https://github.com/martinszeltins/who-wants-to-be-a-millionaire"
license=('GPL2')
depends=('libadwaita')
makedepends=('git' 'blueprint-compiler' 'meson')
checkdepends=('appstream-glib')
_commit=032e0762f0cb3d2e1bf09d27af18999c71d40d56 # tags/1.0.2^0
source=("$pkgname::git+$url.git#commit=$_commit")
b2sums=('SKIP')
pkgver() {
cd $pkgname
git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
arch-meson $pkgname build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs || :
}
package() {
meson install -C build --destdir "$pkgdir"
}
|