core/farstream/PKGBUILD
2018-05-23 23:54:20 +02:00

32 lines
929 B
Bash

# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/farstream-0.1/
pkgname=farstream
pkgver=0.2.8
pkgrel=2
pkgdesc="Audio/Video Communications Framework (legacy version)"
arch=('x86_64')
url="http://www.freedesktop.org/wiki/Software/Farstream"
license=('LGPL2.1')
depends=('gst-plugins-base-libs' 'libnice')
makedepends=('gobject-introspection' 'python2')
optdepends=('gst-plugins-good' 'gst-plugins-bad')
source=(http://freedesktop.org/software/$pkgname/releases/$pkgname/$pkgname-$pkgver.tar.gz)
sha256sums=('2b3b9c6b4f64ace8c83e03d1da5c5a2884c1cae10b35471072b574201ab38908')
build() {
cd "$pkgname-$pkgver"
./configure \
--prefix=/usr \
--with-package-name='Chakra Linux farstream package' \
--with-package-origin='https://www.chakralinux.org/'
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}