mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 02:17:15 +08:00
21 lines
496 B
Bash
21 lines
496 B
Bash
# Maintainer: Martin Lee <hellnest.fuah at gmail dot com>
|
|
|
|
pkgname=gloox
|
|
pkgver=1.0
|
|
pkgrel=1
|
|
pkgdesc="C++ libraries for development of Jabber client/component/server"
|
|
arch=('any')
|
|
url="http://camaya.net/gloox"
|
|
options=('!libtool')
|
|
license=("GPL")
|
|
depends=('libidn' 'gnutls')
|
|
source=(http://camaya.net/download/gloox-$pkgver.tar.bz2)
|
|
md5sums=('f8eacf1c6476e0a309b453fd04f90e31')
|
|
|
|
build() {
|
|
cd $srcdir/gloox-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
}
|