mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 08:48:00 +08:00
35 lines
862 B
Bash
35 lines
862 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-farsight')
|
|
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
|
|
}
|
|
|