mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
704 B
Bash
21 lines
704 B
Bash
# $Id: PKGBUILD 3179 2009-09-29 12:43:28Z ibiru $
|
|
# Maintainer: Biru Ionut <biru.ionut at gmail.com>
|
|
# Contributor: Daniel Balieiro <daniel@balieiro.com>
|
|
pkgname=python-telepathy
|
|
pkgver=0.15.12
|
|
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)
|
|
|
|
build() {
|
|
cd $srcdir/telepathy-python-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|
|
md5sums=('5d3956d9729862c23be34e4815c77d33')
|