desktop/mediastreamer/PKGBUILD
2015-12-22 12:41:43 +01:00

27 lines
749 B
Bash

pkgname=mediastreamer
pkgver=2.12.1
pkgrel=1
pkgdesc="A library written in C that allows you to create and run audio and video streams."
arch=('x86_64')
url="http://www.linphone.org"
license=('GPL')
depends=('ortp>=0.25.0' 'libupnp' 'ffmpeg' 'libxv' 'glew')
makedepends=('intltool' 'vim')
source=("https://github.com/BelledonneCommunications/mediastreamer2/archive/${pkgver}.tar.gz")
sha256sums=('7fa5cf0eea6bd750b8b89acaacb2cdbce40fddb54392ca3011f3ccba6c8e15a2')
build() {
cd "${srcdir}"/${pkgname}2-${pkgver}
./autogen.sh
./configure --prefix=/usr \
--enable-glx \
--enable-xv \
--enable-external-ortp
make
}
package() {
cd "${srcdir}"/${pkgname}2-$pkgver
make DESTDIR="${pkgdir}" install
}