diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/gnuchess |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/gnuchess')
-rw-r--r-- | extra/gnuchess/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/extra/gnuchess/PKGBUILD b/extra/gnuchess/PKGBUILD new file mode 100644 index 000000000..d24bc17cf --- /dev/null +++ b/extra/gnuchess/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 108753 2011-02-02 19:55:44Z jgc $ +# Maintainer: Allan McRae <allan@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> + +pkgname=gnuchess +pkgver=5.08 +pkgrel=1 +pkgdesc="Lets most modern computers play a full game of chess" +url="http://www.gnu.org/software/chess/chess.html" +arch=('i686' 'x86_64') +license=('GPL') +depends=('glibc' 'ncurses' 'readline') +source=(ftp://ftp.gnu.org/pub/gnu/chess/$pkgname-$pkgver.tar.gz) +md5sums=('9db91dbac6b5b86de0c57a420a9fea57') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make prefix=$pkgdir/usr install +} |