summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d4f311bf4c8f71369f9700042448bde49169f853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: BlitGaming <blitgaming1007@mail.ru>
pkgname=reactgame
pkgver=1.2.0
pkgrel=1
pkgdesc="A simple reaction training game written in C# (.NET 6.0)"
url="https://github.com/BlitGaming/ReactGame"
arch=("x86_64")
license=("GPL3")
depends=("git" "dotnet-sdk")
source=("git+https://github.com/BlitGaming/ReactGame.git")
options=(!strip)
sha256sums=("SKIP")

build() {
	cd "$srcdir/ReactGame"
	make publish
}

package() {
	cd "$srcdir/ReactGame"
	make install DESTDIR="$pkgdir/usr/bin"
}