PKGBUILDs/extra/mediastreamer/PKGBUILD

35 lines
971 B
Bash
Raw Normal View History

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
pkgver=2.9.0
pkgrel=1
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')
depends=('ortp' 'ffmpeg' 'libxv' 'glew' 'libupnp')
# xxd from Vim is needed to build
makedepends=('intltool' 'vim')
options=('!libtool')
source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
md5sums=('f2ea0fe731a363749a81b6eaac22a62c'
'SKIP')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --disable-strict
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="${pkgdir}" install
}