2014-03-29 16:30:22 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: Ionut Biru <ibiru@archlinux.org>
|
|
|
|
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
# Contributor: Paul Mattal <paul@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - drop x265 until it builds on ARM
|
2014-12-26 15:41:39 +00:00
|
|
|
#
|
|
|
|
# ALARM: David Beauchamp <david@archlinuxarm.org>
|
|
|
|
# - drop hardening-wrapper from makedepends
|
2014-03-29 16:30:22 +00:00
|
|
|
|
|
|
|
pkgname=ffmpeg
|
2014-12-23 13:51:38 +00:00
|
|
|
pkgver=2.5.2
|
2014-12-26 15:41:39 +00:00
|
|
|
pkgrel=2
|
2014-03-29 16:30:22 +00:00
|
|
|
epoch=1
|
|
|
|
pkgdesc='Complete and free Internet live audio and video broadcasting solution'
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url='http://ffmpeg.org/'
|
|
|
|
license=('GPL')
|
|
|
|
depends=(
|
|
|
|
'alsa-lib' 'bzip2' 'fontconfig' 'gnutls' 'gsm' 'lame' 'libass' 'libvdpau'
|
|
|
|
'libbluray' 'libmodplug' 'libpulse' 'libtheora' 'libva' 'libvorbis' 'libvpx'
|
|
|
|
'opencore-amr' 'openjpeg' 'opus' 'rtmpdump' 'schroedinger' 'sdl' 'speex'
|
2014-06-09 10:40:14 +00:00
|
|
|
'v4l-utils' 'libx264' 'xvidcore' 'zlib')
|
2014-09-10 12:13:53 +00:00
|
|
|
makedepends=('libvdpau' 'yasm')
|
2014-05-05 21:06:30 +00:00
|
|
|
source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc})
|
2014-12-23 13:51:38 +00:00
|
|
|
validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8') # ffmpeg-devel
|
|
|
|
md5sums=('308d49d91752ac00ded9483ebaab849d'
|
2014-05-05 21:06:30 +00:00
|
|
|
'SKIP')
|
2014-04-10 13:14:14 +00:00
|
|
|
|
2014-03-29 16:30:22 +00:00
|
|
|
build() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-debug \
|
|
|
|
--disable-static \
|
2014-05-21 00:29:36 +00:00
|
|
|
--enable-avisynth \
|
2014-03-29 16:30:22 +00:00
|
|
|
--enable-avresample \
|
2014-07-02 03:05:09 +00:00
|
|
|
--enable-decoder=atrac3 \
|
|
|
|
--enable-decoder=atrac3p \
|
2014-03-29 16:30:22 +00:00
|
|
|
--enable-dxva2 \
|
|
|
|
--enable-fontconfig \
|
|
|
|
--enable-gnutls \
|
|
|
|
--enable-gpl \
|
|
|
|
--enable-libass \
|
|
|
|
--enable-libbluray \
|
|
|
|
--enable-libfreetype \
|
|
|
|
--enable-libgsm \
|
|
|
|
--enable-libmodplug \
|
|
|
|
--enable-libmp3lame \
|
|
|
|
--enable-libopencore_amrnb \
|
|
|
|
--enable-libopencore_amrwb \
|
|
|
|
--enable-libopenjpeg \
|
|
|
|
--enable-libopus \
|
|
|
|
--enable-libpulse \
|
|
|
|
--enable-librtmp \
|
|
|
|
--enable-libschroedinger \
|
|
|
|
--enable-libspeex \
|
|
|
|
--enable-libtheora \
|
|
|
|
--enable-libv4l2 \
|
|
|
|
--enable-libvorbis \
|
|
|
|
--enable-libvpx \
|
|
|
|
--enable-libx264 \
|
|
|
|
--enable-libxvid \
|
|
|
|
--enable-pic \
|
|
|
|
--enable-postproc \
|
|
|
|
--enable-runtime-cpudetect \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-swresample \
|
|
|
|
--enable-vdpau \
|
|
|
|
--enable-version3 \
|
|
|
|
--enable-x11grab
|
|
|
|
|
|
|
|
make
|
|
|
|
make tools/qt-faststart
|
|
|
|
make doc/ff{mpeg,play,server}.1
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install install-man
|
|
|
|
install -Dm755 tools/qt-faststart "$pkgdir"/usr/bin/qt-faststart
|
|
|
|
}
|