core/farstream/PKGBUILD

33 lines
912 B
Bash
Raw Normal View History

# Maintainer : Anke Boersma <abveritas@chakra-project.org>
pkgname=farstream
2013-04-04 19:05:55 +08:00
pkgver=0.2.2
pkgrel=1
pkgdesc="Farstream (formerly Farsight) - Audio/Video Communications Framework"
2013-04-04 19:05:55 +08:00
arch=(x86_64)
url="http://www.freedesktop.org/wiki/Software/Farstream"
license=('LGPL2.1')
2013-04-04 19:05:55 +08:00
depends=('gst-plugins-base' 'libnice')
makedepends=('gobject-introspection')
optdepends=('gst-plugins-good' 'gst-plugins-bad')
conflicts=('farsight2')
replaces=('farsight2')
provides=('farsight2')
options=(!libtool)
2013-04-04 19:05:55 +08:00
source=(http://freedesktop.org/software/$pkgname/releases/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('01c20c1ed014ad4e18e55f1f6caf7877')
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr \
--with-package-name='Chakra-Project farstream package' \
--with-package-origin='http://www.chakra-project.org' \
--disable-static
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}