mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:37:15 +08:00
35 lines
863 B
Bash
35 lines
863 B
Bash
|
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
||
|
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
||
|
|
||
|
pkgname=telepathy-farstream
|
||
|
pkgver=0.4.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="A telepathy-backend to use stream engine."
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://telepathy.freedesktop.org"
|
||
|
license=('LGPL2.1')
|
||
|
depends=('telepathy-glib' 'farstream')
|
||
|
makedepends=('libxslt' 'gstreamer0.10-python' 'pygobject')
|
||
|
conflicts=('telepathy-farsight')
|
||
|
replaces=('telepathy-farsight')
|
||
|
provides=('telepathy-farstream')
|
||
|
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
|
||
|
}
|
||
|
|