mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
25 lines
531 B
Bash
25 lines
531 B
Bash
# Maintainer: Martin Lee <hellnest.fuah at gmail dot com>
|
|
|
|
pkgname=gloox
|
|
pkgver=1.0.17
|
|
pkgrel=2
|
|
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=('a8cc8565790c8b0afb4a4725a8c7d38d')
|
|
|
|
build() {
|
|
cd $srcdir/gloox-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/gloox-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|