summaryrefslogtreecommitdiff
path: root/community/ccgo
diff options
context:
space:
mode:
Diffstat (limited to 'community/ccgo')
-rw-r--r--community/ccgo/PKGBUILD27
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: