summaryrefslogtreecommitdiff
path: root/testing/telepathy-salut/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/telepathy-salut/PKGBUILD')
-rw-r--r--testing/telepathy-salut/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/telepathy-salut/PKGBUILD b/testing/telepathy-salut/PKGBUILD
new file mode 100644
index 000000000..eca5466ec
--- /dev/null
+++ b/testing/telepathy-salut/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 155709 2012-04-05 10:39:18Z ibiru $
+# Maintainer: Ionut Biru <ibiru@archlinux.org>
+# Contributor: Daniel Balieiro <daniel@balieiro.com>
+
+pkgname=telepathy-salut
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="A link-local XMPP connection manager for Telepathy"
+arch=('i686' 'x86_64')
+url="http://telepathy.freedesktop.org"
+groups=('telepathy')
+license=('LGPL')
+depends=('telepathy-glib' 'avahi' 'libsoup' 'sqlite3')
+makedepends=('libxslt' 'python2' 'xmldiff')
+install=telepathy-salut.install
+options=(!libtool)
+source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('43639c23de33e8466540de02816d23bf')
+
+build() {
+ cd "$pkgname-$pkgver"
+ ./configure --prefix=/usr \
+ --libexecdir=/usr/lib/telepathy \
+ --disable-plugins --disable-Werror \
+ --with-tls=openssl \
+ --enable-avahi-tests=no \
+ --enable-static=no
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}