summaryrefslogtreecommitdiff
path: root/community/rogue
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-11-09 01:24:21 -0800
committerroot <root@rshg054.dnsready.net>2012-11-09 01:24:21 -0800
commitc865fc041a0945e396f139a86315f6a25b1d4dec (patch)
tree95e232fb3fc00a803572f8e58af5b08d55ca070f /community/rogue
parente5f99abe2484d8fdfd1b2d57ba2233e027e9b64c (diff)
Fri Nov 9 01:24:21 PST 2012
Diffstat (limited to 'community/rogue')
-rw-r--r--community/rogue/PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/community/rogue/PKGBUILD b/community/rogue/PKGBUILD
new file mode 100644
index 000000000..98de5901e
--- /dev/null
+++ b/community/rogue/PKGBUILD
@@ -0,0 +1,24 @@
+# $Id: PKGBUILD 79577 2012-11-08 06:32:13Z kkeen $
+# Maintainer: Kyle Keen <keenerd@gmail.com>
+pkgname=rogue
+pkgver=5.4.4
+pkgrel=2
+pkgdesc="The original dungeon crawl game."
+arch=('i686' 'x86_64')
+url="http://rogue.rogueforge.net/rogue-5-4/"
+license=('custom')
+depends=('ncurses')
+provides=('rouge') # so the illiterate can find it in searches too
+#source=(http://rogue.rogueforge.net/files/rogue5.4/$pkgname$pkgver-src.tar.gz)
+source=(http://www.sourcefiles.org/Games/Role_Play/$pkgname$pkgver-src.tar.gz)
+md5sums=('033288f46444b06814c81ea69d96e075')
+
+build() {
+ cd "$srcdir/$pkgname$pkgver"
+ ./configure
+ make
+ install -Dm755 rogue "$pkgdir/usr/bin/rogue"
+ install -Dm644 rogue.6 "$pkgdir/usr/share/man/man6/rogue.6"
+ install -Dm644 LICENSE.TXT "$pkgdir/usr/share/licenses/$pkgname/LICENSE.TXT"
+}
+