summaryrefslogtreecommitdiff
path: root/extra/ffmpeg
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2011-10-29 01:37:59 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2011-10-29 01:37:59 +0200
commit6a97bb2b52f57a8392b7c8e35602242deee69bd9 (patch)
treeb14e0d1f371436d16b7b5cd95f2b3e5677c083b4 /extra/ffmpeg
parentdd990cf933067e5362858dc5e1619fc9f68c15b9 (diff)
Build ffmpeg without static libraries and unneeded dependencies.
Diffstat (limited to 'extra/ffmpeg')
-rw-r--r--extra/ffmpeg/PKGBUILD21
1 files changed, 17 insertions, 4 deletions
diff --git a/extra/ffmpeg/PKGBUILD b/extra/ffmpeg/PKGBUILD
index 3965375d6..4d18d7f6b 100644
--- a/extra/ffmpeg/PKGBUILD
+++ b/extra/ffmpeg/PKGBUILD
@@ -5,13 +5,18 @@
pkgname=ffmpeg
pkgver=20111003
-pkgrel=1
+pkgrel=1.1
pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix"
arch=('i686' 'x86_64' 'mips64el')
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' 'rtmpdump')
-makedepends=('yasm' 'git')
+if [ "${CARCH}" = "mips64el" ] ; then
+ depends=('bzip2' 'lame' 'sdl' 'libvorbis' 'xvidcore' 'zlib' 'x264' 'libtheora' 'opencore-amr' 'alsa-lib' 'libxfixes' 'schroedinger' 'libvpx' 'openjpeg' 'rtmpdump')
+ makedepends=('git' 'pkg-config')
+else
+ depends=('bzip2' 'lame' 'sdl' 'libvorbis' 'xvidcore' 'zlib' 'x264' 'libtheora' 'opencore-amr' 'alsa-lib' 'libvdpau' 'libxfixes' 'schroedinger' 'libvpx' 'libva' 'openjpeg' 'rtmpdump')
+ makedepends=('yasm' 'git' 'pkg-config')
+fi
#git clone git://git.videolan.org/ffmpeg.git
source=(ftp://ftp.archlinux.org/other/ffmpeg/${pkgname}-${pkgver}.tar.xz
ffmpeg-loongson.patch)
@@ -23,6 +28,12 @@ build() {
# [ "$CARCH" = "mips64el" ] && patch -Np1 -i $srcdir/ffmpeg-loongson.patch
+ if [ "$CARCH" = "mips64el" ] ; then
+ extraconf="--disable-runtime-cpudetect --disable-vdpau --disable-vaapi"
+ else
+ extraconf=""
+ fi
+
./configure \
--prefix=/usr \
--enable-libmp3lame \
@@ -42,7 +53,9 @@ build() {
--enable-gpl \
--enable-version3 \
--enable-runtime-cpudetect \
- --disable-debug
+ --disable-static \
+ --disable-debug \
+ $extraconf
make
make tools/qt-faststart