mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:37:15 +08:00
33 lines
876 B
Bash
33 lines
876 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=telepathy-farsight
|
|
pkgver=0.0.17
|
|
pkgrel=1
|
|
pkgdesc="A telepathy-backend to use stream engine."
|
|
arch=('i686' 'x86_64')
|
|
url="http://telepathy.freedesktop.org"
|
|
license=('GPL')
|
|
depends=('telepathy-glib' 'farsight2' 'gstreamer0.10-base')
|
|
makedepends=('libxslt' 'python2')
|
|
groups=('telepathy')
|
|
options=('!libtool')
|
|
source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --libexecdir=/usr/lib/telepathy \
|
|
--enable-static=no
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
md5sums=('f98377802d38333924f6f1a955a2d42a')
|
|
|