# $Id: PKGBUILD 85265 2010-07-11 10:15:18Z ibiru $ # Maintainer : Ionut Biru # Contributor: Tom Newsom # Contributor: Paul Mattal # Maintainer for Parabola GNU/Linux: Omar Botta pkgname=ffmpeg-libre pkgver=20110330 pkgrel=1 pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix. Libre version without faac" arch=('i686' 'x86_64') url="http://ffmpeg.org/" license=('GPL') depends=('bzip2' 'lame' 'sdl' 'libvorbis' 'xvidcore' 'zlib' 'x264' 'libtheora' 'opencore-amr' 'alsa-lib' 'libvdpau' 'libxfixes' 'schroedinger' 'libvpx' 'libva' 'openjpeg') makedepends=('yasm' 'git') #git clone git://git.videolan.org/ffmpeg.git source=(ftp://ftp.archlinux.org/other/ffmpeg/ffmpeg-${pkgver}.tar.xz) md5sums=('dd682a876a496b9f9ae8afb3b3b70389') #source=(http://ffmpeg.org/releases//releases/ffmpeg-${pkgver}.tar.bz2) provides=("ffmpeg=$pkgver") conflicts=('ffmpeg') replaces=('ffmpeg') build() { cd "$srcdir/${pkgname%-libre}" ./configure \ --prefix=/usr \ --enable-gpl \ --enable-libmp3lame \ --enable-libvorbis \ --disable-libfaac \ --enable-libxvid \ --enable-libx264 \ --enable-libvpx \ --enable-libtheora \ --enable-postproc \ --enable-shared \ --enable-x11grab \ --enable-libopencore_amrnb \ --enable-libopencore_amrwb \ --enable-libschroedinger \ --enable-libopenjpeg \ --enable-version3 \ --disable-nonfree \ --enable-runtime-cpudetect \ --disable-debug # libfaac is nonfree make make tools/qt-faststart make doc/ff{mpeg,play,server}.1 make DESTDIR="$pkgdir" install install-man install -D -m755 tools/qt-faststart "$pkgdir/usr/bin/qt-faststart" } # vim:set ts=2 sw=2 et: