mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
240 lines
4.8 KiB
Bash
240 lines
4.8 KiB
Bash
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
# Contributor: Paul Mattal <paul@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - remove makedepends on ffnvcodec-headers, remove --enable-nvenc, --enable-nvdec
|
|
# - remove depends on aom, remove --enable-libaom
|
|
# - remove optdepends on intel-media-sdk, onevpl-intel-gpu
|
|
# - remove depends on onevpl, remove --enable-libvpl
|
|
# - remove depends on vmaf, remove --enable-vmaf
|
|
# - remove depends on rav1e, remove --enable-librav1e
|
|
# - remove depends on svt-av1, remove --enable-libsvtav1
|
|
# - remove --enable-lto
|
|
|
|
pkgname=ffmpeg
|
|
pkgver=7.0.2
|
|
pkgrel=1
|
|
epoch=2
|
|
pkgdesc='Complete solution to record, convert and stream audio and video'
|
|
arch=(x86_64)
|
|
url=https://ffmpeg.org
|
|
license=(GPL-3.0-only)
|
|
depends=(
|
|
alsa-lib
|
|
bzip2
|
|
cairo
|
|
dav1d
|
|
fontconfig
|
|
freetype2
|
|
fribidi
|
|
glib2
|
|
glibc
|
|
gmp
|
|
gnutls
|
|
gsm
|
|
harfbuzz
|
|
jack
|
|
lame
|
|
libass
|
|
libavc1394
|
|
libbluray
|
|
libbs2b
|
|
libdrm
|
|
libdvdnav
|
|
libdvdread
|
|
libgl
|
|
libiec61883
|
|
libjxl
|
|
libmodplug
|
|
libopenmpt
|
|
libplacebo
|
|
libpulse
|
|
libraw1394
|
|
librsvg
|
|
libsoxr
|
|
libssh
|
|
libtheora
|
|
libva
|
|
libvdpau
|
|
libvorbis
|
|
libvpx
|
|
libwebp
|
|
libx11
|
|
libxcb
|
|
libxext
|
|
libxml2
|
|
libxv
|
|
ocl-icd
|
|
opencore-amr
|
|
openjpeg2
|
|
opus
|
|
rubberband
|
|
sdl2
|
|
snappy
|
|
speex
|
|
srt
|
|
v4l-utils
|
|
vapoursynth
|
|
vid.stab
|
|
vulkan-icd-loader
|
|
x264
|
|
x265
|
|
xvidcore
|
|
xz
|
|
zimg
|
|
zlib
|
|
)
|
|
makedepends=(
|
|
amf-headers
|
|
avisynthplus
|
|
clang
|
|
frei0r-plugins
|
|
git
|
|
ladspa
|
|
mesa
|
|
nasm
|
|
opencl-headers
|
|
vulkan-headers
|
|
)
|
|
optdepends=(
|
|
'avisynthplus: AviSynthPlus support'
|
|
'frei0r-plugins: Frei0r video effects support'
|
|
'ladspa: LADSPA filters'
|
|
)
|
|
provides=(
|
|
libavcodec.so
|
|
libavdevice.so
|
|
libavfilter.so
|
|
libavformat.so
|
|
libavutil.so
|
|
libpostproc.so
|
|
libswresample.so
|
|
libswscale.so
|
|
)
|
|
options=(
|
|
debug
|
|
)
|
|
_tag=a18b979d17fa169a6f93c5be8732533c8e06337d
|
|
source=(
|
|
git+https://git.ffmpeg.org/ffmpeg.git?signed#tag=${_tag}
|
|
add-av_stream_get_first_dts-for-chromium.patch
|
|
)
|
|
b2sums=('bcc0fb367d2822665f0918292a0cf581e0119d6ba6d2e3d0b6e794b6f74d30c118b5c47e26b5687473f01b346f8ec7e885f80729ce6115e18003b2371ff4553f'
|
|
'555274228e09a233d92beb365d413ff5c718a782008075552cafb2130a3783cf976b51dfe4513c15777fb6e8397a34122d475080f2c4483e8feea5c0d878e6de')
|
|
validpgpkeys=(DD1EC9E8DE085C629B3E1846B18E8928B3948D64) # Michael Niedermayer <michael@niedermayer.cc>
|
|
|
|
prepare() {
|
|
cd ffmpeg
|
|
patch -Np1 -i ../add-av_stream_get_first_dts-for-chromium.patch # https://crbug.com/1251779
|
|
}
|
|
|
|
pkgver() {
|
|
cd ffmpeg
|
|
git describe --tags | sed 's/^n//'
|
|
}
|
|
|
|
build() {
|
|
export PKG_CONFIG_PATH='/usr/lib/mbedtls2/pkgconfig'
|
|
cd ffmpeg
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-debug \
|
|
--disable-static \
|
|
--disable-stripping \
|
|
--enable-amf \
|
|
--enable-avisynth \
|
|
--enable-cuda-llvm \
|
|
--enable-fontconfig \
|
|
--enable-frei0r \
|
|
--enable-gmp \
|
|
--enable-gnutls \
|
|
--enable-gpl \
|
|
--enable-ladspa \
|
|
--enable-libass \
|
|
--enable-libbluray \
|
|
--enable-libbs2b \
|
|
--enable-libdav1d \
|
|
--enable-libdrm \
|
|
--enable-libdvdnav \
|
|
--enable-libdvdread \
|
|
--enable-libfreetype \
|
|
--enable-libfribidi \
|
|
--enable-libgsm \
|
|
--enable-libharfbuzz \
|
|
--enable-libiec61883 \
|
|
--enable-libjack \
|
|
--enable-libjxl \
|
|
--enable-libmodplug \
|
|
--enable-libmp3lame \
|
|
--enable-libopencore_amrnb \
|
|
--enable-libopencore_amrwb \
|
|
--enable-libopenjpeg \
|
|
--enable-libopenmpt \
|
|
--enable-libopus \
|
|
--enable-libplacebo \
|
|
--enable-libpulse \
|
|
--enable-librsvg \
|
|
--enable-librubberband \
|
|
--enable-libsnappy \
|
|
--enable-libsoxr \
|
|
--enable-libspeex \
|
|
--enable-libsrt \
|
|
--enable-libssh \
|
|
--enable-libtheora \
|
|
--enable-libv4l2 \
|
|
--enable-libvidstab \
|
|
--enable-libvorbis \
|
|
--enable-libvpx \
|
|
--enable-libwebp \
|
|
--enable-libx264 \
|
|
--enable-libx265 \
|
|
--enable-libxcb \
|
|
--enable-libxml2 \
|
|
--enable-libxvid \
|
|
--enable-libzimg \
|
|
--enable-opencl \
|
|
--enable-opengl \
|
|
--enable-shared \
|
|
--enable-vapoursynth \
|
|
--enable-version3 \
|
|
--enable-vulkan $CONFIG
|
|
make
|
|
make tools/qt-faststart
|
|
make doc/ff{mpeg,play}.1
|
|
}
|
|
|
|
package() {
|
|
depends+=(
|
|
libass.so
|
|
libbluray.so
|
|
libbs2b.so
|
|
libdav1d.so
|
|
libfreetype.so
|
|
libharfbuzz.so
|
|
libjxl.so
|
|
libopenmpt.so
|
|
libplacebo.so
|
|
librsvg-2.so
|
|
librubberband.so
|
|
libva.so
|
|
libva-drm.so
|
|
libva-x11.so
|
|
libvidstab.so
|
|
libvorbisenc.so
|
|
libvorbis.so
|
|
libvpx.so
|
|
libx264.so
|
|
libx265.so
|
|
libxvidcore.so
|
|
libzimg.so
|
|
)
|
|
|
|
make DESTDIR="${pkgdir}" -C ffmpeg install install-man
|
|
install -Dm 755 ffmpeg/tools/qt-faststart "${pkgdir}"/usr/bin/
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et:
|