blob: 62f179f3557ea8a2ca0c9f09f55ad1066baafb51 (
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.1.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"
}
|