summaryrefslogtreecommitdiff
path: root/testing/telepathy-glib/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/telepathy-glib/PKGBUILD')
-rw-r--r--testing/telepathy-glib/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/testing/telepathy-glib/PKGBUILD b/testing/telepathy-glib/PKGBUILD
new file mode 100644
index 000000000..73f2c19af
--- /dev/null
+++ b/testing/telepathy-glib/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 139169 2011-09-30 19:17:32Z ibiru $
+# Maintainer: Ionut Biru <ibiru@archlinux.org>
+# Contributor: Kessia 'even' Pinheiro <kessiapinheiro at gmail.com
+# Contributor: Bjorn Lindeijer <bjorn lindeijer nl>
+
+pkgname=telepathy-glib
+pkgver=0.15.6
+pkgrel=2
+pkgdesc="GLib bindings for the Telepathy D-Bus protocol"
+arch=('i686' 'x86_64')
+url="http://telepathy.freedesktop.org"
+groups=('telepathy')
+license=('LGPL2.1')
+options=('!libtool' '!emptydirs')
+depends=('dbus-glib')
+makedepends=('libxslt' 'vala' 'gobject-introspection')
+source=("http://telepathy.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz"
+ fix_gnome-shell.patch)
+md5sums=('37881cb8d2a33184cf5957db809b8278'
+ '015037782eeb8658a9fb093f49a2097f')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ patch -Np1 -i "${srcdir}/fix_gnome-shell.patch"
+ PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+ --libexecdir=/usr/lib/telepathy \
+ --enable-vala-bindings \
+ --enable-static=no
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR=${pkgdir} install
+}