PKGBUILDs/extra/ffmpeg/PKGBUILD

104 lines
3 KiB
Bash
Raw Normal View History

2015-01-17 15:31:12 +00:00
# $Id$
# Maintainer: Ionut Biru <ibiru@archlinux.org>
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
2015-07-15 12:15:46 +00:00
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
2015-01-17 15:31:12 +00:00
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# Contributor: Paul Mattal <paul@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - use -fPIC in host cflags for armv7 to fix print_options.c compile
pkgname=ffmpeg
2015-11-27 19:02:39 +00:00
pkgver=2.8.3
2015-11-14 13:37:35 +00:00
pkgrel=1
2015-01-17 15:31:12 +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=(
2015-07-21 12:38:36 +00:00
'alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'gnutls' 'gsm' 'lame' 'libass'
2015-07-28 23:19:46 +00:00
'libbluray' 'libmodplug' 'libpulse' 'libsoxr' 'libssh' 'libtheora'
'libva' 'libvdpau' 'libwebp' 'opencore-amr' 'openjpeg' 'opus'
'schroedinger' 'sdl' 'speex' 'v4l-utils' 'xvidcore' 'zlib'
2015-07-21 12:38:36 +00:00
'sdl' 'speex' 'v4l-utils' 'xvidcore' 'zlib'
2015-11-27 19:02:39 +00:00
'libdcadec.so' 'libvidstab.so' 'libvorbis.so' 'libvorbisenc.so'
'libvpx.so' 'libx264.so' 'libx265.so'
2015-07-21 12:38:36 +00:00
)
2015-09-08 12:06:28 +00:00
makedepends=('hardening-wrapper' 'ladspa' 'libvdpau' 'yasm')
optdepends=('ladspa: LADSPA filters')
2015-07-21 12:38:36 +00:00
provides=(
'libavcodec.so' 'libavdevice.so' 'libavfilter.so' 'libavformat.so'
'libavresample.so' 'libavutil.so' 'libpostproc.so' 'libswresample.so'
'libswscale.so'
2015-01-17 15:31:12 +00:00
)
2015-11-12 00:49:20 +00:00
source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc}
ffmpeg-2.8.1-libvpxenc-remove-some-unused-ctrl-id-mappings.patch)
2015-01-17 15:31:12 +00:00
validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8') # ffmpeg-devel
2015-11-27 19:02:39 +00:00
md5sums=('937a6573ba399cf3e6808c9c6ea3d6d6'
2015-11-12 00:49:20 +00:00
'SKIP'
'71be9bcd297cb9ce833bbc5d425c0470')
prepare() {
cd $pkgname-$pkgver
patch -p1 -i ../ffmpeg-2.8.1-libvpxenc-remove-some-unused-ctrl-id-mappings.patch
}
2015-01-17 15:31:12 +00:00
build() {
cd $pkgname-$pkgver
2015-07-16 05:35:02 +00:00
[[ $CARCH == "armv7h" || $CARCH == "aarch64" ]] && CONFIG='--host-cflags="-fPIC"'
2015-01-17 15:31:12 +00:00
./configure \
--prefix=/usr \
--disable-debug \
--disable-static \
--disable-stripping \
--enable-avisynth \
--enable-avresample \
--enable-fontconfig \
--enable-gnutls \
--enable-gpl \
2015-09-08 12:06:28 +00:00
--enable-ladspa \
2015-01-17 15:31:12 +00:00
--enable-libass \
--enable-libbluray \
2015-11-27 19:02:39 +00:00
--enable-libdcadec \
2015-01-17 15:31:12 +00:00
--enable-libfreetype \
--enable-libfribidi \
--enable-libgsm \
--enable-libmodplug \
--enable-libmp3lame \
--enable-libopencore_amrnb \
--enable-libopencore_amrwb \
--enable-libopenjpeg \
--enable-libopus \
--enable-libpulse \
--enable-libschroedinger \
2015-07-28 23:19:46 +00:00
--enable-libsoxr \
2015-01-17 15:31:12 +00:00
--enable-libspeex \
2015-03-18 19:27:52 +00:00
--enable-libssh \
2015-01-17 15:31:12 +00:00
--enable-libtheora \
--enable-libv4l2 \
2015-11-03 00:34:32 +00:00
--enable-libvidstab \
2015-01-17 15:31:12 +00:00
--enable-libvorbis \
--enable-libvpx \
2015-07-15 12:15:46 +00:00
--enable-libwebp \
2015-01-17 15:31:12 +00:00
--enable-libx264 \
--enable-libx265 \
--enable-libxvid \
--enable-shared \
--enable-version3 \
--enable-x11grab \
$CONFIG
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
}