blob: c8f11cba765633fe6dc8f31c54995d960f93f201 (
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
|
# $Id: PKGBUILD 97452 2013-09-20 12:51:17Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: ziggi <xziggix@gmail.com>
pkgname=curseofwar
pkgver=1.2.0
pkgrel=1
pkgdesc='Fast-paced RTS/Action game with ncurses interface'
arch=('x86_64' 'i686')
url='https://github.com/a-nikolaev/curseofwar/wiki'
license=('GPL')
depends=('ncurses')
makedepends=('gcc')
source=("https://github.com/a-nikolaev/curseofwar/archive/v$pkgver.tar.gz")
sha256sums=('91b7781e26341faa6b6999b6baf6e74ef532fa94303ab6a2bf9ff6d614a3f670')
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
|