2012-06-03 23:22:08 +08:00
|
|
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
2013-04-04 19:22:40 +08:00
|
|
|
# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/telepathy-farstream/
|
2012-06-03 23:22:08 +08:00
|
|
|
|
|
|
|
pkgname=telepathy-farstream
|
2013-04-05 00:45:24 +08:00
|
|
|
pkgver=0.4.0
|
2013-04-04 19:22:40 +08:00
|
|
|
pkgrel=1
|
2012-06-03 23:22:08 +08:00
|
|
|
pkgdesc="A telepathy-backend to use stream engine."
|
2013-04-04 19:22:40 +08:00
|
|
|
arch=(x86_64)
|
2012-06-03 23:22:08 +08:00
|
|
|
url="http://telepathy.freedesktop.org"
|
|
|
|
license=('LGPL2.1')
|
|
|
|
depends=('telepathy-glib' 'farstream')
|
2013-04-04 19:22:40 +08:00
|
|
|
makedepends=('dbus-glib' 'gobject-introspection')
|
2012-06-03 23:22:08 +08:00
|
|
|
conflicts=('telepathy-farsight')
|
|
|
|
replaces=('telepathy-farsight')
|
2012-06-11 21:43:05 +08:00
|
|
|
provides=('telepathy-farsight')
|
2012-09-27 23:15:01 +08:00
|
|
|
groups=('telepathy')
|
2012-06-03 23:22:08 +08:00
|
|
|
options=('!libtool')
|
|
|
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
2013-04-05 00:45:24 +08:00
|
|
|
md5sums=('52d110f8a9f27bce0a6c2c07e18aee56')
|
2012-06-03 23:22:08 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--libexecdir=/usr/lib/telepathy \
|
|
|
|
--disable-static
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|
|
|
|
|