mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 14:24:37 +08:00
30 lines
728 B
Bash
30 lines
728 B
Bash
# Platform Packages for Chakra, part of chakraos.org
|
|
#
|
|
# maintainer Jeff Huang <s8321414[at]gmail[dot]com>
|
|
|
|
pkgname=libgadu
|
|
pkgver=1.12.1
|
|
pkgrel=1
|
|
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
|
|
}
|