blob: 69d220edad4d658e10f99fa65e23f2d9151275a0 (
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>
# Contributor: Igor Dyatlov <dyatlov.igor@protonmail.com>
pkgname=tactics
pkgver=0.8
_commit=74e9e287f85e692ea52b28f0fc7ff3c2ef5cbc07
pkgrel=1
pkgdesc="Build your soccer lineup"
url="https://gitlab.com/leesonwai/tactics"
license=('GPL-3.0-only')
arch=('x86_64' 'aarch64')
depends=('libadwaita')
makedepends=('git' 'glib2-devel' 'meson')
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"
}
|