PKGBUILDs/community/ekg/PKGBUILD
2009-10-09 21:15:33 -05:00

22 lines
681 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Contributor: Jaroslaw Swierczynski <swiergot@juvepoland.com>
pkgname=ekg
pkgver=1.7
pkgrel=3
pkgdesc="A text-mode Gadu-Gadu client"
arch=('i686' 'x86_64')
url="http://ekg.chmurka.net/"
license=('GPL')
depends=('libungif' 'libjpeg' 'aspell' 'python' 'giflib')
source=(http://ekg.chmurka.net/$pkgname-$pkgver.tar.gz)
md5sums=('2aa92b56517fdf09d75519a105772b74')
build() {
cd $startdir/src/$pkgname-$pkgver
sed -i 's#gg%s#ekg%s#' src/ekg.c
./configure --prefix=/usr --with-pthread --enable-aspell --with-python
make || return 1
make DESTDIR=$startdir/pkg install
rm -rf $startdir/pkg/usr/include $startdir/pkg/usr/lib
}