summaryrefslogtreecommitdiff
path: root/community/curseofwar
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-09-21 03:03:11 -0700
committerroot <root@rshg054.dnsready.net>2013-09-21 03:03:11 -0700
commitd3285d3c8cd7a90ac8766e0ce54c6eafaad7a5f2 (patch)
tree16903ca6eab9912b737843e2d20e8b793eb84809 /community/curseofwar
parent42fbe2d214b850ded06b23ca33f3aa2880e60dbb (diff)
Sat Sep 21 02:56:25 PDT 2013
Diffstat (limited to 'community/curseofwar')
-rw-r--r--community/curseofwar/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community/curseofwar/PKGBUILD b/community/curseofwar/PKGBUILD
new file mode 100644
index 000000000..c8f11cba7
--- /dev/null
+++ b/community/curseofwar/PKGBUILD
@@ -0,0 +1,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: