2011-04-17 18:48:51 +08:00
|
|
|
#
|
|
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
|
|
|
|
# include global config
|
2011-04-17 23:38:29 +08:00
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
2011-04-17 18:48:51 +08:00
|
|
|
|
|
|
|
pkgname=telepathy-gabble
|
2011-11-12 04:08:18 +08:00
|
|
|
pkgver=0.14.0
|
2011-05-05 10:32:54 +08:00
|
|
|
pkgrel=1
|
2011-04-17 18:48:51 +08:00
|
|
|
pkgdesc="A Jabber/XMPP connection manager that handles single- and multi-user chats and voice/video calls."
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://telepathy.freedesktop.org/"
|
|
|
|
license=('GPL')
|
2011-04-17 23:38:29 +08:00
|
|
|
depends=('telepathy-glib' 'libsoup' 'libnice' 'util-linux' 'sqlite3')
|
|
|
|
makedepends=('libxslt' 'python2')
|
|
|
|
install=telepathy-gabble.install
|
2011-04-17 18:48:51 +08:00
|
|
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
2011-11-12 04:08:18 +08:00
|
|
|
md5sums=('73afa5533833d176b9b82b96351efe63')
|
2011-04-17 18:48:51 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
|
2011-06-04 00:54:18 +08:00
|
|
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy --with-tls=openssl
|
|
|
|
make
|
|
|
|
}
|
2011-04-17 18:48:51 +08:00
|
|
|
|
2011-06-04 00:54:18 +08:00
|
|
|
package() {
|
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
2011-04-17 18:48:51 +08:00
|
|
|
}
|
|
|
|
|