summaryrefslogtreecommitdiff
path: root/community/ekg
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/ekg
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/ekg')
-rw-r--r--community/ekg/ChangeLog5
-rw-r--r--community/ekg/PKGBUILD22
2 files changed, 27 insertions, 0 deletions
diff --git a/community/ekg/ChangeLog b/community/ekg/ChangeLog
new file mode 100644
index 000000000..717d49b5d
--- /dev/null
+++ b/community/ekg/ChangeLog
@@ -0,0 +1,5 @@
+2009-03-16 Mateusz Herych <heniekk@gmail.com>
+* Rebuild against python 2.6
+2007-07-02 tardo <tardo@nagi-fanboi.net>
+* Built for x86_64
+
diff --git a/community/ekg/PKGBUILD b/community/ekg/PKGBUILD
new file mode 100644
index 000000000..5052fbe86
--- /dev/null
+++ b/community/ekg/PKGBUILD
@@ -0,0 +1,22 @@
+# $Id: PKGBUILD 26474 2010-09-15 21:57:57Z schuay $
+# Contributor: Jaroslaw Swierczynski <swiergot@juvepoland.com>
+
+pkgname=ekg
+pkgver=1.7
+pkgrel=6
+pkgdesc="A text-mode Gadu-Gadu client"
+arch=('i686' 'x86_64')
+url="http://ekg.chmurka.net/"
+license=('GPL')
+depends=('libjpeg' 'aspell' 'python2' 'giflib')
+source=(http://ekg.chmurka.net/$pkgname-$pkgver.tar.gz)
+md5sums=('2aa92b56517fdf09d75519a105772b74')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ sed -i 's#gg%s#ekg%s#' src/ekg.c
+ ./configure --prefix=/usr --with-pthread --enable-aspell --with-python
+ make
+ make DESTDIR=$pkgdir install
+ rm -rf $pkgdir/usr/include $pkgdir/usr/lib
+}