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.20
|
|
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=('2d7394e908f6637a96d0535c18b942e1')
|
|
|
|
build() {
|
|
cd $srcdir/gloox-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/gloox-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|