summaryrefslogtreecommitdiff
path: root/community/ekg/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/ekg/PKGBUILD')
-rw-r--r--community/ekg/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/ekg/PKGBUILD b/community/ekg/PKGBUILD
new file mode 100644
index 000000000..484ddb151
--- /dev/null
+++ b/community/ekg/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id: PKGBUILD 94723 2013-07-29 16:25:52Z bpiotrowski $
+# Contributor: Jaroslaw Swierczynski <swiergot@juvepoland.com>
+
+pkgname=ekg
+pkgver=1.8rc2
+pkgrel=1
+pkgdesc="A text-mode Gadu-Gadu client"
+arch=('i686' 'x86_64')
+url="http://ekg.chmurka.net/"
+license=('GPL')
+depends=('libjpeg' 'aspell' 'python2' 'giflib' 'libgadu')
+source=(http://ekg.chmurka.net/$pkgname-$pkgver.tar.gz)
+md5sums=('f697c711da91ddf57c882114539e92fe')
+
+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
+}
+
+package() {
+ make DESTDIR=$pkgdir install
+ rm -rf $pkgdir/usr/include $pkgdir/usr/lib
+}