summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cda4d5141e12ea57ff4378e326d971626d5ce41c (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
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: Evan Oicle <oicleevan@protonmail.com>
pkgname=the-deeps
pkgver=1.2.1
pkgrel=1
pkgdesc="A C++ text-based adventure game."
arch=('any')
url="https://github.com/oicleevan/the-deeps"
license=('MIT')
source=("https://github.com/oicleevan/$pkgname/archive/refs/tags/$pkgver.zip")
md5sums=('44f6dd777bc5d631220650da6f2cf6f0')

build() {
	cd "$pkgname-$pkgver/src/libeo"
	make
	cd "../.."
	make
}

package() {
	cd "$pkgname-$pkgver"
	sudo make install
}
md5sums=('44f6dd777bc5d631220650da6f2cf6f0')