summaryrefslogtreecommitdiff
path: root/community/rogue
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/rogue
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/rogue')
-rw-r--r--community/rogue/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/rogue/PKGBUILD b/community/rogue/PKGBUILD
new file mode 100644
index 000000000..76ce5bb6a
--- /dev/null
+++ b/community/rogue/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 83922 2013-02-06 14:55:54Z kkeen $
+# Maintainer: Kyle Keen <keenerd@gmail.com>
+pkgname=rogue
+pkgver=5.4.4
+pkgrel=3
+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
+}
+
+package() {
+ cd "$srcdir/$pkgname$pkgver"
+ 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"
+}
+