2015-01-17 15:31:12 +00:00
|
|
|
# $Id$
|
2015-12-20 13:58:12 +00:00
|
|
|
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
|
|
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
|
|
# Contributor: Ionut Biru <ibiru@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
|
2017-10-20 18:21:17 +00:00
|
|
|
pkgver=3.4
|
2017-11-11 03:46:37 +00:00
|
|
|
pkgrel=4
|
2015-01-17 15:31:12 +00:00
|
|
|
epoch=1
|
2015-12-20 13:58:12 +00:00
|
|
|
pkgdesc='Complete solution to record, convert and stream audio and video'
|
2015-01-17 15:31:12 +00:00
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url='http://ffmpeg.org/'
|
2015-12-20 13:58:12 +00:00
|
|
|
license=('GPL3')
|
2016-10-30 17:41:03 +00:00
|
|
|
depends=('alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'glibc' 'gmp' 'gnutls' 'gsm'
|
|
|
|
'jack' 'lame' 'libavc1394' 'libiec61883' 'libmodplug' 'libpulse'
|
2017-11-11 03:46:37 +00:00
|
|
|
'libraw1394' 'libsoxr' 'libssh' 'libtheora' 'libvdpau' 'libwebp'
|
|
|
|
'libx11' 'libxcb' 'opencore-amr' 'openjpeg2' 'opus' 'sdl2' 'speex'
|
|
|
|
'v4l-utils' 'xz' 'zlib'
|
|
|
|
'libass.so' 'libbluray.so' 'libfreetype.so' 'libva-drm.so' 'libva.so'
|
|
|
|
'libva-x11.so' 'libvidstab.so' 'libvorbisenc.so' 'libvorbis.so'
|
|
|
|
'libvpx.so' 'libx264.so' 'libx265.so' 'libxvidcore.so')
|
2017-07-15 18:07:24 +00:00
|
|
|
makedepends=('ladspa' 'libvdpau' 'yasm')
|
2015-09-08 12:06:28 +00:00
|
|
|
optdepends=('ladspa: LADSPA filters')
|
2015-12-20 13:58:12 +00:00
|
|
|
provides=('libavcodec.so' 'libavdevice.so' 'libavfilter.so' 'libavformat.so'
|
|
|
|
'libavresample.so' 'libavutil.so' 'libpostproc.so' 'libswresample.so'
|
|
|
|
'libswscale.so')
|
2017-11-11 03:46:37 +00:00
|
|
|
source=("https://ffmpeg.org/releases/ffmpeg-${pkgver}.tar.xz"{,.asc}
|
|
|
|
'fs56089.patch')
|
2015-12-20 13:58:12 +00:00
|
|
|
validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8')
|
2017-10-20 18:21:17 +00:00
|
|
|
sha256sums=('aeee06e4d8b18d852c61ebbfe5e1bb7014b1e118e8728c1c2115f91e51bffbef'
|
2017-11-11 03:46:37 +00:00
|
|
|
'SKIP'
|
|
|
|
'0bfcd12d1992903f21c146ae56d9ad89b52818cfb2303197ee905347c25a5427')
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd ffmpeg-${pkgver}
|
|
|
|
|
|
|
|
# https://bugs.archlinux.org/task/56089
|
|
|
|
# Backport of http://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=a606f27f4c610708fa96e35eed7b7537d3d8f712
|
|
|
|
patch -Np1 -i ../fs56089.patch
|
|
|
|
}
|
2015-01-17 15:31:12 +00:00
|
|
|
|
|
|
|
build() {
|
2016-01-16 00:56:07 +00:00
|
|
|
cd ffmpeg-${pkgver}
|
2015-01-17 15:31:12 +00:00
|
|
|
|
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 \
|
2015-12-20 13:58:12 +00:00
|
|
|
--prefix='/usr' \
|
2015-01-17 15:31:12 +00:00
|
|
|
--disable-debug \
|
|
|
|
--disable-static \
|
|
|
|
--disable-stripping \
|
|
|
|
--enable-avisynth \
|
|
|
|
--enable-avresample \
|
|
|
|
--enable-fontconfig \
|
2016-09-20 12:46:07 +00:00
|
|
|
--enable-gmp \
|
2015-01-17 15:31:12 +00:00
|
|
|
--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 \
|
|
|
|
--enable-libfreetype \
|
|
|
|
--enable-libfribidi \
|
|
|
|
--enable-libgsm \
|
2016-04-03 14:03:12 +00:00
|
|
|
--enable-libiec61883 \
|
2015-01-17 15:31:12 +00:00
|
|
|
--enable-libmodplug \
|
|
|
|
--enable-libmp3lame \
|
|
|
|
--enable-libopencore_amrnb \
|
|
|
|
--enable-libopencore_amrwb \
|
|
|
|
--enable-libopenjpeg \
|
|
|
|
--enable-libopus \
|
|
|
|
--enable-libpulse \
|
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 \
|
2017-04-13 23:51:58 +00:00
|
|
|
--enable-libxcb \
|
2015-01-17 15:31:12 +00:00
|
|
|
--enable-libxvid \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-version3 \
|
|
|
|
$CONFIG
|
|
|
|
|
|
|
|
make
|
|
|
|
make tools/qt-faststart
|
|
|
|
make doc/ff{mpeg,play,server}.1
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2016-01-16 00:56:07 +00:00
|
|
|
cd ffmpeg-${pkgver}
|
2015-12-20 13:58:12 +00:00
|
|
|
|
|
|
|
make DESTDIR="${pkgdir}" install install-man
|
|
|
|
install -Dm 755 tools/qt-faststart "${pkgdir}"/usr/bin/
|
2015-01-17 15:31:12 +00:00
|
|
|
}
|
2015-12-20 13:58:12 +00:00
|
|
|
|
|
|
|
# vim: ts=2 sw=2 et:
|