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
|
|
|
|
|
|
|
|
pkgname=ffmpeg
|
2014-04-10 15:23:57 +00:00
|
|
|
pkgver=2.2.1
|
|
|
|
pkgrel=1
|
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'
|
|
|
|
'v4l-utils' 'x264' 'xvidcore' 'zlib'
|
|
|
|
)
|
|
|
|
makedepends=('libvdpau' 'yasm')
|
2014-04-10 13:14:14 +00:00
|
|
|
source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc}
|
|
|
|
0001-libx265-Support-API-version-9.patch)
|
2014-04-10 15:28:05 +00:00
|
|
|
md5sums=('b8a1ee4964c2638f46fcc803ed453818'
|
2014-04-10 13:14:14 +00:00
|
|
|
'SKIP'
|
|
|
|
'4cbf9b13dc013e96be36445b4a2bfdac')
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
patch -p1 -i ../0001-libx265-Support-API-version-9.patch
|
|
|
|
}
|
2014-03-29 16:30:22 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-debug \
|
|
|
|
--disable-static \
|
|
|
|
--enable-avresample \
|
|
|
|
--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
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|