mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 05:57:14 +08:00
30 lines
689 B
Bash
30 lines
689 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=libgadu
|
|
pkgver=1.11.2
|
|
pkgrel=1
|
|
pkgdesc="This library implements the client side of the Gadu-Gadu protocol"
|
|
arch=('x86_64')
|
|
url="http://toxygen.net/libgadu/"
|
|
license=('GPL')
|
|
depends=('openssl')
|
|
options=('!libtool')
|
|
source=("http://toxygen.net/${pkgname}/files/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('832432fef251f69f31e68574c17f0c51')
|
|
|
|
build() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--enable-shared \
|
|
--with-pthread
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|