diff options
Diffstat (limited to 'extra/farstream-0.1/PKGBUILD')
-rw-r--r-- | extra/farstream-0.1/PKGBUILD | 40 |
1 files changed, 23 insertions, 17 deletions
diff --git a/extra/farstream-0.1/PKGBUILD b/extra/farstream-0.1/PKGBUILD index b1ee8f8fc..f078a8d59 100644 --- a/extra/farstream-0.1/PKGBUILD +++ b/extra/farstream-0.1/PKGBUILD @@ -1,43 +1,49 @@ -# $Id: PKGBUILD 197948 2013-10-30 11:51:24Z allan $ +# $Id: PKGBUILD 201487 2013-12-12 18:59:01Z jgc $ # Maintainer: Evangelos Foutras <evangelos@foutrelis.com> # Contributor: Ionut Biru <ibiru@archlinux.org> pkgname=farstream-0.1 _pkgname=farstream pkgver=0.1.2 -pkgrel=2.1 +pkgrel=3 pkgdesc="Audio/Video Communications Framework (legacy version)" arch=('i686' 'x86_64' 'mips64el') url="http://www.freedesktop.org/wiki/Software/Farstream" license=('LGPL2.1') depends=('libnice' 'gstreamer0.10-base' 'gstreamer0.10-bad-plugins' 'gstreamer0.10-good' 'gstreamer0.10-ffmpeg') -makedepends=('gobject-introspection' 'gstreamer0.10-python' 'python2-gobject2') -source=(http://freedesktop.org/software/$_pkgname/releases/$_pkgname/$_pkgname-$pkgver.tar.gz +makedepends=('gobject-introspection' 'gstreamer0.10-python' 'python2-gobject2' 'git' 'gtk-doc') +source=(git://git.collabora.co.uk/git/farstream.git#commit=54e28e95bed4f04bc95dae509c3724399c79fa29 farstream-0.1.2-prefer-vp8.patch - farstream-0.1.2-introspection-tag-order.patch) -sha256sums=('fa5a40597b47b59d124f7fd57f66704b030d576cdc0d90e107c7a592f05e73d9' - '5f8f2876bde0f21383b3d059c94914a2fcd63d45a1bb1b5cd2e2208cd2536da5' - 'f540ea6f239e291f9ffc5b806cfea9f9cd0c4f13963e900719a5ee3a3f370124') - -build() { - cd "$_pkgname-$pkgver" + codec-discovery-intersect.patch + rtp-memleak.patch) +sha256sums=('SKIP') - patch -Np1 -i "$srcdir/farstream-0.1.2-prefer-vp8.patch" - patch -Np1 -i "$srcdir/farstream-0.1.2-introspection-tag-order.patch" +prepare() { + cd farstream + patch -Np1 -i ../farstream-0.1.2-prefer-vp8.patch + patch -Np1 -i ../codec-discovery-intersect.patch + patch -Np1 -i ../rtp-memleak.patch +} +build() { + cd farstream + NOCONFIGURE=1 ./autogen.sh ./configure \ --prefix=/usr \ --with-package-name='Parabola Farstream 0.1 Package' \ --with-package-origin='https://parabolagnulinux.org/' \ - --disable-static - make + --enable-gtk-doc --disable-static + make -j1 } package() { - cd "$_pkgname-$pkgver" - + cd farstream make DESTDIR="$pkgdir" install } # vim:set ts=2 sw=2 et: +sha256sums=('SKIP' + '5f8f2876bde0f21383b3d059c94914a2fcd63d45a1bb1b5cd2e2208cd2536da5' + '385d7c72e269bf48bd41937442d819a1e6d0f2472b903670a8a5555f5cb96586' + 'b966312ccad90dd30b78ee2df49e9637b3b573e498668bcc58ac208f254440db') |