mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
815 B
Bash
23 lines
815 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Biru Ionut <biru.ionut at gmail.com>
|
|
# Contributor: Giedrius Slavinskas <giedrius25@gmail.com>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=telepathy-stream-engine
|
|
pkgver=0.5.9
|
|
pkgrel=1
|
|
pkgdesc="A telepathy client that handles Streamed Media channels"
|
|
arch=('i686' 'x86_64')
|
|
url="http://telepathy.freedesktop.org"
|
|
license=('LGPL')
|
|
depends=('telepathy-glib>=0.7.6' 'telepathy-farsight>=0.0.3')
|
|
groups=('telepathy')
|
|
source=(http://telepathy.freedesktop.org/releases/stream-engine/$pkgname-$pkgver.tar.gz)
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/telepathy
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|
|
md5sums=('df37bd8e4e9d847aeabf7971420efc0b')
|