PKGBUILDs/extra/ffmpeg/PKGBUILD

95 lines
2.8 KiB
Bash
Raw Normal View History

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
2016-02-27 15:23:41 +00:00
pkgver=3.0
pkgrel=1
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')
depends=('alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'gnutls' 'gsm' 'lame'
'libass' 'libbluray' 'libmodplug' 'libpulse' 'libsoxr' 'libssh'
'libtheora' 'libva' 'libvdpau' 'libwebp' 'opencore-amr' 'openjpeg'
'opus' 'schroedinger' 'sdl' 'speex' 'v4l-utils' 'xvidcore' 'zlib'
'libdcadec.so' 'libvidstab.so' 'libvorbis.so' 'libvorbisenc.so'
'libvpx.so' 'libx264.so' 'libx265.so')
2015-09-08 12:06:28 +00:00
makedepends=('hardening-wrapper' 'ladspa' 'libvdpau' 'yasm')
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')
2016-01-16 19:48:00 +00:00
source=(http://ffmpeg.org/releases/ffmpeg-${pkgver}.tar.bz2{,.asc})
2015-12-20 13:58:12 +00:00
validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8')
2016-02-27 15:23:41 +00:00
sha256sums=('f19ff77a2f7f736a41dd1499eef4784bf3cb7461f07c13a268164823590113c0'
2016-01-16 19:48:00 +00:00
'SKIP')
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 \
--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() {
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: