2013-06-20 20:21:32 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer:
|
|
|
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
|
|
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
# Contributor: Adrià Arrufat <swiftscythe@gmail.com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - add --disable-strict to configure to remove -Werror
|
|
|
|
|
|
|
|
pkgname=mediastreamer
|
2014-03-06 14:24:29 +00:00
|
|
|
pkgver=2.10.0
|
2014-03-13 14:34:19 +00:00
|
|
|
pkgrel=2
|
2013-06-20 20:21:32 +00:00
|
|
|
pkgdesc="A library written in C that allows you to create and run audio and video streams"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://www.linphone.org/"
|
|
|
|
license=('GPL')
|
2013-09-11 22:30:55 +00:00
|
|
|
depends=('ortp' 'ffmpeg' 'libxv' 'libupnp')
|
2013-06-20 20:21:32 +00:00
|
|
|
# xxd from Vim is needed to build
|
|
|
|
makedepends=('intltool' 'vim')
|
|
|
|
source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
|
2014-03-06 14:24:29 +00:00
|
|
|
md5sums=('5a4e7545e212068534b56fdf41c961e9'
|
2013-06-20 20:21:32 +00:00
|
|
|
'SKIP')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $pkgname-$pkgver
|
2013-09-11 22:30:55 +00:00
|
|
|
./configure --prefix=/usr --disable-strict \
|
|
|
|
--disable-glx --enable-xv
|
2013-06-20 20:21:32 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|