blob: e2b1eeba86d7915bd9251b34d6e8e5f378baa9e3 (
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
|
# Maintainer: Thor77 <thor77 at thor77 dot org>
pkgname=goatattack
pkgver=0.3.8.1
pkgrel=1
pkgdesc="A fast-paced multiplayer pixel art shooter game."
arch=("any")
url="http://www.goatattack.net/"
license=('GPL')
depends=("sdl2" "libpng" "sdl2_mixer")
source=("http://www.goatattack.net/installers/$pkgname-$pkgver.tar.gz")
md5sums=('e5a16f2d1509d9994d68e6e83a8cc204')
prepare() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
}
build() {
cd "$srcdir/$pkgname-$pkgver"
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
|