mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
added extra/mediastreamer
This commit is contained in:
parent
528f3cc80b
commit
12edc6efdc
1 changed files with 34 additions and 0 deletions
34
extra/mediastreamer/PKGBUILD
Normal file
34
extra/mediastreamer/PKGBUILD
Normal file
|
@ -0,0 +1,34 @@
|
|||
# $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
|
||||
}
|
Loading…
Reference in a new issue