summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 32cef6c94e854617af4669a1839f42c20104bebf (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
# Maintainer: Aline Abler <alinea@riseup.net>
pkgname=beyond-the-tesseract
pkgver=1.0.0
pkgrel=1
pkgdesc="A text adventure game about math."
arch=('x86_64')
url="https://ifdb.org/viewgame?id=0u4eqnk37mohejhu"
license=('unknown')
groups=()
depends=("glibc")
makedepends=("cmake" "gcc")
install=
source=("https://ifarchive.org/if-archive/games/source/tess.tar.gz")
sha256sums=('adec4a1db623e01268afef7a977cdd6eb2aa47f4faac3af21fff94c3567ad48a')
validpgpkeys=()

prepare() {
	cd "tess"
	patch -p1 -i patches01
	patch -p0 -i patches02
}

build() {
	cd "tess"
	make
}

package() {
	cd "tess"
    mkdir -p "$pkgdir/usr/bin/"
    install -Dm755 "tess" "$pkgdir/usr/bin/"
}