diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/mediastreamer/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/mediastreamer/PKGBUILD')
-rw-r--r-- | community/mediastreamer/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/mediastreamer/PKGBUILD b/community/mediastreamer/PKGBUILD new file mode 100644 index 000000000..4b97dc151 --- /dev/null +++ b/community/mediastreamer/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 44001 2011-04-01 15:25:02Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: AdriĆ Arrufat <swiftscythe@gmail.com> + +pkgname=mediastreamer +pkgver=2.7.3 +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' 'speex' 'v4l-utils' 'ffmpeg') +makedepends=('cmake' 'automoc4') +source=("http://download-mirror.savannah.gnu.org/releases/linphone/mediastreamer/mediastreamer-$pkgver.tar.gz" + "disable-v4l1.patch") +md5sums=('5213307f557d86aa648f1a53a885138c' + '7ee15689eed1adbdcf0ddab8fadca34a') + +build() { + cd "$srcdir"/$pkgname-$pkgver/ + patch -p2 <$srcdir/disable-v4l1.patch + ./configure --prefix=/usr + make + make DESTDIR=${pkgdir} install +} |