diff options
Diffstat (limited to 'extra/gnugo/PKGBUILD')
-rw-r--r-- | extra/gnugo/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/gnugo/PKGBUILD b/extra/gnugo/PKGBUILD new file mode 100644 index 000000000..e959d7bf8 --- /dev/null +++ b/extra/gnugo/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 27575 2009-02-23 03:41:08Z eric $ +# Maintainer: Jason Chu <jason@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> +# Commiter: damir <damir@archlinux.org> + +pkgname=gnugo +pkgver=3.8 +pkgrel=1 +pkgdesc="This sofware is a program that plays the game of Go" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/gnugo/" +license=('GPL3' 'custom') +depends=('ncurses' 'glibc' 'texinfo') +install=gnugo.install +source=(http://ftp.gnu.org/gnu/gnugo/$pkgname-$pkgver.tar.gz LICENSE) +md5sums=('6db0a528df58876d2b0ef1659c374a9a' '4df5819356804397c553c95ea8164f11') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr || return 1 + make || return 1 + make DESTDIR=$pkgdir install || return 1 + rm -r ${pkgdir}/usr/share/info/dir + gzip ${pkgdir}/usr/share/info/* + install -Dm644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE +} |