mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:47:13 +08:00
34 lines
874 B
Bash
34 lines
874 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=libgadu
|
|
pkgver=1.11.0
|
|
pkgrel=1
|
|
pkgdesc="This library implements the client side of the Gadu-Gadu protocol"
|
|
arch=('i686' 'x86_64')
|
|
url="http://toxygen.net/libgadu/"
|
|
license=('GPL')
|
|
depends=('openssl')
|
|
options=('!libtool')
|
|
source=("http://toxygen.net/${pkgname}/files/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('c779891298ce5d081c1e871e1e5b256d')
|
|
|
|
build() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--enable-shared \
|
|
--with-pthread
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|