# $Id: PKGBUILD 148371 2012-01-30 19:05:43Z eric $ # Maintainer: Andrea Scarpino # Contributor: Mateusz Herych pkgname=libgadu pkgver=1.11.1 pkgrel=1 pkgdesc="This library implements the client side of the Gadu-Gadu protocol" arch=('i686' 'x86_64') url="http://toxygen.net/libgadu/" license=('GPL') depends=('openssl') options=('!libtool') source=("http://toxygen.net/${pkgname}/files/${pkgname}-${pkgver}.tar.gz") md5sums=('01016ad3b0ea955b61ef4badf2bd48bf') build() { cd "${srcdir}"/${pkgname}-${pkgver} ./configure --prefix=/usr \ --disable-static \ --enable-shared \ --with-pthread make } package() { cd "${srcdir}"/${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install }