diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-12-27 23:55:53 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-12-27 23:55:53 +0000 |
commit | 65eeff79fff8a1bfdf67ca51d147384f46f4d5c0 (patch) | |
tree | fbfdff322b28d9a3c37e6e31c94caf1d8e48dac1 /community/ccgo/PKGBUILD | |
parent | d53c44f055929b18d7d1b25f8367ee5836c435fc (diff) |
Fri Dec 27 23:54:04 UTC 2013
Diffstat (limited to 'community/ccgo/PKGBUILD')
-rw-r--r-- | community/ccgo/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/ccgo/PKGBUILD b/community/ccgo/PKGBUILD new file mode 100644 index 000000000..affc75102 --- /dev/null +++ b/community/ccgo/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 101516 2013-11-26 20:38:54Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Guillem Rieu <guillemr@gmx.net> + +pkgname=ccgo +pkgver=0.3.6.4 +pkgrel=3 +pkgdesc='Play the game of Go with gnugo or against other players on IGS' +arch=('x86_64' 'i686') +url='http://ccdw.org/~cjj/prog/ccgo/' +license=('GPL') +depends=('gtkmm' 'gconfmm') +source=("http://ccdw.org/~cjj/prog/$pkgname/src/$pkgname-$pkgver.tar.gz") +sha256sums=('1975a4e9b6661f6613dd3a00b3ee7e176b80244f555a184b258b50ef4352a890') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr + make +} + +package() { + make -C "$srcdir/$pkgname-$pkgver" DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |