mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 09:37:15 +08:00
26 lines
706 B
Bash
26 lines
706 B
Bash
pkgname=mediastreamer
|
|
pkgver=2.11.2
|
|
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' 'libupnp' 'ffmpeg' 'libxv' 'glew')
|
|
makedepends=('intltool' 'vim')
|
|
source=("http://download-mirror.savannah.gnu.org/releases/linphone/mediastreamer/mediastreamer-${pkgver}.tar.gz")
|
|
md5sums=('8b654c3e8938d50df9e83d2e353888a6')
|
|
|
|
build() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--enable-glx \
|
|
--enable-xv \
|
|
--enable-external-ortp
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/$pkgname-$pkgver
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|