mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:37:13 +08:00
27 lines
772 B
Bash
27 lines
772 B
Bash
#
|
|
# KDE SC Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=mediastreamer
|
|
pkgver=2.7.3
|
|
pkgrel=2
|
|
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' 'speex' 'v4l-utils' 'ffmpeg' 'libxv')
|
|
makedepends=('cmake' 'automoc4')
|
|
source=("http://download-mirror.savannah.gnu.org/releases/linphone/mediastreamer/mediastreamer-$pkgver.tar.gz")
|
|
md5sums=('5213307f557d86aa648f1a53a885138c')
|
|
|
|
build() {
|
|
|
|
cd "$srcdir"/$pkgname-$pkgver/
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
}
|