diff options
author | root <root@rshg054.dnsready.net> | 2011-09-02 23:14:49 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-09-02 23:14:49 +0000 |
commit | b37ee9de1a430956d9e5958ebd9d7e0dbfc79327 (patch) | |
tree | 087dd7d26bea36f9b3b7c485f9e8e8251cbe0423 /gnome-unstable/telepathy-glib/PKGBUILD | |
parent | eb3d40c72c9dd19f6a5ef79b41e9d8ba73ccd928 (diff) |
Fri Sep 2 23:14:49 UTC 2011
Diffstat (limited to 'gnome-unstable/telepathy-glib/PKGBUILD')
-rw-r--r-- | gnome-unstable/telepathy-glib/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnome-unstable/telepathy-glib/PKGBUILD b/gnome-unstable/telepathy-glib/PKGBUILD new file mode 100644 index 000000000..cac5690e2 --- /dev/null +++ b/gnome-unstable/telepathy-glib/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 136808 2011-09-01 18:48:52Z 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.5 +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' '!emptydirs') +depends=('dbus-glib') +makedepends=('libxslt' 'vala' 'gobject-introspection') +source=("http://telepathy.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('18c93456fcf3568e47c6a6342b8c46f5') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + 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 +} |