summaryrefslogtreecommitdiff
path: root/testing/telepathy-salut
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-04-07 00:01:17 +0000
committerroot <root@rshg054.dnsready.net>2012-04-07 00:01:17 +0000
commit3d65494a8eda056377febda4642ce992e69a9371 (patch)
treedae57e04ca5f7d7490acbde87206eaa62695109d /testing/telepathy-salut
parentd9c1fc1bcca8fd5cd3566fc6b183fe23065778bc (diff)
Sat Apr 7 00:01:16 UTC 2012
Diffstat (limited to 'testing/telepathy-salut')
-rw-r--r--testing/telepathy-salut/PKGBUILD34
-rw-r--r--testing/telepathy-salut/telepathy-salut.install13
2 files changed, 47 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
+}
diff --git a/testing/telepathy-salut/telepathy-salut.install b/testing/telepathy-salut/telepathy-salut.install
new file mode 100644
index 000000000..87d7838b8
--- /dev/null
+++ b/testing/telepathy-salut/telepathy-salut.install
@@ -0,0 +1,13 @@
+post_install() {
+ killall -HUP dbus-daemon 2>&1
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+post_remove() {
+ post_install $1
+}
+
+# vim:set ts=2 sw=2 et: