diff options
Diffstat (limited to 'community/rogue/PKGBUILD')
-rw-r--r-- | community/rogue/PKGBUILD | 24 |
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" +} + |