core/libgadu/PKGBUILD

26 lines
620 B
Bash
Raw Normal View History

2010-03-14 23:48:48 +08:00
pkgname=libgadu
2015-01-12 22:15:29 +08:00
pkgver=1.12.1
2017-01-16 04:09:37 +08:00
pkgrel=3
2011-09-07 22:49:31 +08:00
pkgdesc="This library implements the client side of the Gadu-Gadu protocol"
arch=('x86_64')
2010-03-14 23:48:48 +08:00
url="http://toxygen.net/libgadu/"
2015-01-12 22:15:29 +08:00
license=('LGPL2.1')
depends=('gnutls' 'protobuf-c')
2010-03-14 23:48:48 +08:00
options=('!libtool')
2015-01-12 22:15:29 +08:00
source=("http://github.com/wojtekka/libgadu/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz")
md5sums=('6de8b26f3b9155a67f549ced6da93c56')
2010-03-14 23:48:48 +08:00
build() {
2011-09-07 22:49:31 +08:00
cd "${srcdir}"/${pkgname}-${pkgver}
2015-01-12 22:15:29 +08:00
./protobufgen.sh
2010-03-14 23:48:48 +08:00
./configure --prefix=/usr \
--disable-static \
2015-01-12 22:15:29 +08:00
--disable-tests
2011-09-07 22:49:31 +08:00
make
2010-04-07 03:23:26 +08:00
}
package() {
2011-09-07 22:49:31 +08:00
cd "${srcdir}"/${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
2010-03-14 23:48:48 +08:00
}