mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
27 lines
733 B
Bash
27 lines
733 B
Bash
# maintainer :abveritas[at]chakra-project[dog]org>
|
|
|
|
pkgname=mediastreamer
|
|
pkgver=2.9.0
|
|
pkgrel=2
|
|
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' 'speex' 'v4l-utils' 'ffmpeg>=0.11' 'libxv')
|
|
makedepends=('cmake' 'automoc4' 'intltool')
|
|
source=("http://download-mirror.savannah.gnu.org/releases/linphone/mediastreamer/mediastreamer-$pkgver.tar.gz")
|
|
md5sums=('f2ea0fe731a363749a81b6eaac22a62c')
|
|
|
|
build() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
./configure --prefix=/usr \
|
|
--disable-glx \
|
|
--enable-xv
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/$pkgname-$pkgver
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|