core/libgadu/PKGBUILD
2015-11-24 00:48:10 +00:00

26 lines
620 B
Bash

pkgname=libgadu
pkgver=1.12.1
pkgrel=2
pkgdesc="This library implements the client side of the Gadu-Gadu protocol"
arch=('x86_64')
url="http://toxygen.net/libgadu/"
license=('LGPL2.1')
depends=('gnutls' 'protobuf-c')
options=('!libtool')
source=("http://github.com/wojtekka/libgadu/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz")
md5sums=('6de8b26f3b9155a67f549ced6da93c56')
build() {
cd "${srcdir}"/${pkgname}-${pkgver}
./protobufgen.sh
./configure --prefix=/usr \
--disable-static \
--disable-tests
make
}
package() {
cd "${srcdir}"/${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}