summaryrefslogtreecommitdiff
path: root/community/curseofwar/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/curseofwar/PKGBUILD')
-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: