blob: 30ea92415b91ba6f46e99e72670960c807ebf52e (
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
|
pkgname=gearsystem-highscore-git
pkgver=r1015.c3aa6d3
pkgrel=1
pkgdesc="Highscore port of Gearsystem"
arch=('x86_64')
url="https://github.com/alice-mkh/Gearsystem"
license=('GPL-3.0-or-later')
depends=('libhighscore-git')
makedepends=('git' 'meson')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/alice-mkh/Gearsystem.git')
sha256sums=('SKIP')
pkgver() {
cd Gearsystem
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd Gearsystem/platforms
arch-meson highscore build
meson compile -C build
}
package() {
cd Gearsystem/platforms
meson install -C build --destdir "$pkgdir"
}
|