PKGBUILDs/extra/ffmpeg/PKGBUILD

81 lines
2.1 KiB
Bash
Raw Normal View History

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>
2015-01-10 17:36:49 +00:00
# remove when bumped upstream
2014-03-29 16:30:22 +00:00
pkgname=ffmpeg
2014-12-23 13:51:38 +00:00
pkgver=2.5.2
2015-01-10 16:03:23 +00:00
pkgrel=2.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'
2015-01-10 16:03:23 +00:00
'v4l-utils' 'libx264' 'xvidcore' 'zlib' 'x265' 'fribidi'
)
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 \
2015-01-10 16:03:23 +00:00
--disable-stripping \
2014-05-21 00:29:36 +00:00
--enable-avisynth \
2014-03-29 16:30:22 +00:00
--enable-avresample \
--enable-fontconfig \
--enable-gnutls \
--enable-gpl \
--enable-libass \
--enable-libbluray \
--enable-libfreetype \
2015-01-10 16:03:23 +00:00
--enable-libfribidi \
2014-03-29 16:30:22 +00:00
--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 \
2015-01-10 16:03:23 +00:00
--enable-libx265 \
2014-03-29 16:30:22 +00:00
--enable-libxvid \
--enable-runtime-cpudetect \
--enable-shared \
--enable-swresample \
--enable-vdpau \
--enable-version3 \
2015-01-10 16:03:23 +00:00
--enable-x11grab \
2014-03-29 16:30:22 +00:00
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
}