diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/telepathy-glib |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/telepathy-glib')
-rw-r--r-- | extra/telepathy-glib/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/telepathy-glib/PKGBUILD b/extra/telepathy-glib/PKGBUILD new file mode 100644 index 000000000..772405de1 --- /dev/null +++ b/extra/telepathy-glib/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 103588 2010-12-21 23:15:02Z 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.12.7 +pkgrel=1 +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') +depends=('dbus-glib>=0.92') +makedepends=('libxslt' 'vala' 'gobject-introspection') +source=("http://telepathy.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('a3b5f526e2c831472395352685aba3fe') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr \ + --enable-vala-bindings \ + --enable-static=no + make + make DESTDIR=${pkgdir} install +} |