core/telepathy-farstream/PKGBUILD

36 lines
935 B
Bash

# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/telepathy-farstream/
pkgname=telepathy-farstream
pkgver=0.4.0
pkgrel=4
pkgdesc="A telepathy-backend to use stream engine."
arch=(x86_64)
url="http://telepathy.freedesktop.org"
license=('LGPL2.1')
depends=('telepathy-glib' 'farstream' 'gstreamer0.10-python' )
makedepends=('dbus-glib' 'python2-gobject')
conflicts=('telepathy-farsight')
replaces=('telepathy-farsight')
provides=('telepathy-farsight')
groups=('telepathy')
options=('!libtool')
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('52d110f8a9f27bce0a6c2c07e18aee56')
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/telepathy \
--disable-static
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}