mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
823 B
Bash
25 lines
823 B
Bash
|
# $Id: PKGBUILD 2211 2009-09-10 20:22:38Z ibiru $
|
||
|
# Maintainer: Biru Ionut <biru.ionut at gmail.com>
|
||
|
# Contributor: Ju Liu <liuju86 at gmail dot com>
|
||
|
# Contributor: Denis Zawada <deno@rootnode.net>
|
||
|
pkgname=telepathy-farsight
|
||
|
pkgver=0.0.11
|
||
|
pkgrel=1
|
||
|
pkgdesc="A telepathy-backend to use stream engine."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://telepathy.freedesktop.org"
|
||
|
license=('GPL')
|
||
|
depends=('telepathy-glib>=0.7.34' 'farsight2>=0.0.14' 'gstreamer0.10-base')
|
||
|
makedepends=('libxslt' 'python')
|
||
|
groups=('telepathy')
|
||
|
options=('!libtool')
|
||
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
}
|
||
|
md5sums=('e9b73829e4211d970732db5ba0c83a45')
|