summaryrefslogtreecommitdiff
path: root/libre/ffmpeg-libre
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /libre/ffmpeg-libre
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'libre/ffmpeg-libre')
-rw-r--r--libre/ffmpeg-libre/PKGBUILD57
1 files changed, 57 insertions, 0 deletions
diff --git a/libre/ffmpeg-libre/PKGBUILD b/libre/ffmpeg-libre/PKGBUILD
new file mode 100644
index 000000000..dc5725eff
--- /dev/null
+++ b/libre/ffmpeg-libre/PKGBUILD
@@ -0,0 +1,57 @@
+# $Id: PKGBUILD 85265 2010-07-11 10:15:18Z ibiru $
+# Maintainer : Ionut Biru <ibiru@archlinux.org>
+# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
+# Contributor: Paul Mattal <paul@archlinux.org>
+# Maintainer for Parabola GNU/Linux: Omar Botta <omarbotta@gnulinuxlibre.net>
+
+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')
+conflicts=('ffmpeg')
+replaces=("ffmpeg=$pkgver")
+
+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: