diff options
Diffstat (limited to 'extra/python-telepathy/PKGBUILD')
-rw-r--r-- | extra/python-telepathy/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/extra/python-telepathy/PKGBUILD b/extra/python-telepathy/PKGBUILD new file mode 100644 index 000000000..13fde3c16 --- /dev/null +++ b/extra/python-telepathy/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 102076 2010-12-04 12:37:04Z ibiru $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> +# Contributor: Daniel Balieiro <daniel@balieiro.com> +pkgname=python-telepathy +pkgver=0.15.19 +pkgrel=1 +pkgdesc="Python libraries for use in Telepathy clients and connection managers" +arch=('i686' 'x86_64') +url="http://telepathy.freedesktop.org" +license=('LGPL') +depends=('dbus-python') +makedepends=('libxslt') +source=(http://telepathy.freedesktop.org/releases/telepathy-python/telepathy-python-${pkgver}.tar.gz) +md5sums=('f7ca25ab3c88874015b7e9728f7f3017') + +build() { + cd "${srcdir}/telepathy-python-${pkgver}" + ./configure --prefix=/usr + make + make DESTDIR="${pkgdir}" install +} |