core/libgadu/PKGBUILD

26 lines
589 B
Bash
Raw Normal View History

2010-03-14 23:48:48 +08:00
pkgname=libgadu
2017-01-25 16:53:54 +08:00
pkgver=1.12.2
pkgrel=1
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')
2017-01-25 16:53:54 +08:00
source=("https://github.com/wojtekka/${pkgname}/archive/${pkgver}.tar.gz")
md5sums=('1eecae8245d696adfbcfd40a2b36f0ca')
2010-03-14 23:48:48 +08:00
build() {
2011-09-07 22:49:31 +08:00
cd "${srcdir}"/${pkgname}-${pkgver}
2017-01-25 16:53:54 +08:00
./autogen.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
}