Update libgadu to 1.12.1.

This commit is contained in:
Jeff Huang 2015-01-12 14:15:29 +00:00
parent 86f268a40f
commit 48969f625a

View File

@ -1,25 +1,25 @@
# Platform Packages for Chakra, part of chakra-project.org # Platform Packages for Chakra, part of chakraos.org
# #
# maintainer abveritas[at]chakra-project[dot]org> # maintainer Jeff Huang <s8321414[at]gmail[dot]com>
pkgname=libgadu pkgname=libgadu
pkgver=1.11.2 pkgver=1.12.1
pkgrel=2 pkgrel=1
pkgdesc="This library implements the client side of the Gadu-Gadu protocol" pkgdesc="This library implements the client side of the Gadu-Gadu protocol"
arch=('x86_64') arch=('x86_64')
url="http://toxygen.net/libgadu/" url="http://toxygen.net/libgadu/"
license=('GPL') license=('LGPL2.1')
depends=('openssl') depends=('gnutls' 'protobuf-c')
options=('!libtool') options=('!libtool')
source=("http://toxygen.net/${pkgname}/files/${pkgname}-${pkgver}.tar.gz") source=("http://github.com/wojtekka/libgadu/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz")
md5sums=('832432fef251f69f31e68574c17f0c51') md5sums=('6de8b26f3b9155a67f549ced6da93c56')
build() { build() {
cd "${srcdir}"/${pkgname}-${pkgver} cd "${srcdir}"/${pkgname}-${pkgver}
./protobufgen.sh
./configure --prefix=/usr \ ./configure --prefix=/usr \
--disable-static \ --disable-static \
--enable-shared \ --disable-tests
--with-pthread
make make
} }