mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
extra/ffmpeg to 4.1-3
This commit is contained in:
parent
986daf27e1
commit
dbca369e58
1 changed files with 67 additions and 18 deletions
|
@ -5,36 +5,85 @@
|
||||||
# Contributor: Paul Mattal <paul@archlinux.org>
|
# Contributor: Paul Mattal <paul@archlinux.org>
|
||||||
|
|
||||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||||
# - use -fPIC in host cflags for armv7 to fix print_options.c compile
|
# - use -fPIC in host cflags for v7/v8 to fix print_options.c compile
|
||||||
# - remove makedepends on ffnvcodec-headers, remove --enable-nvenc, --enable-nvdec
|
# - remove makedepends on ffnvcodec-headers, remove --enable-nvenc, --enable-nvdec
|
||||||
# - remove depends on aom, remove --enable-libaom
|
# - remove depends on aom, remove --enable-libaom
|
||||||
|
|
||||||
pkgname=ffmpeg
|
pkgname=ffmpeg
|
||||||
pkgver=4.1
|
pkgver=4.1
|
||||||
pkgrel=1
|
pkgrel=3
|
||||||
epoch=1
|
epoch=1
|
||||||
pkgdesc='Complete solution to record, convert and stream audio and video'
|
pkgdesc='Complete solution to record, convert and stream audio and video'
|
||||||
arch=('x86_64')
|
arch=(x86_64)
|
||||||
url='http://ffmpeg.org/'
|
url=https://ffmpeg.org/
|
||||||
license=('GPL3')
|
license=(GPL3)
|
||||||
depends=(
|
depends=(
|
||||||
'alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'glibc' 'gmp' 'gnutls' 'gsm'
|
alsa-lib
|
||||||
'jack' 'lame' 'libavc1394' 'libdrm' 'libiec61883' 'libmodplug'
|
bzip2
|
||||||
'libomxil-bellagio' 'libpulse' 'libraw1394' 'libsoxr' 'libssh' 'libtheora'
|
fontconfig
|
||||||
'libvdpau' 'libwebp' 'libx11' 'libxcb' 'libxext' 'libxml2' 'libxv'
|
fribidi
|
||||||
'opencore-amr' 'openjpeg2' 'opus' 'sdl2' 'speex' 'v4l-utils' 'xz' 'zlib'
|
gmp
|
||||||
'libass.so' 'libbluray.so' 'libfreetype.so' 'libva-drm.so' 'libva.so'
|
gnutls
|
||||||
'libva-x11.so' 'libvidstab.so' 'libvorbisenc.so' 'libvorbis.so' 'libvpx.so'
|
gsm
|
||||||
'libx264.so' 'libx265.so' 'libxvidcore.so'
|
jack
|
||||||
|
lame
|
||||||
|
libass.so
|
||||||
|
libavc1394
|
||||||
|
libbluray.so
|
||||||
|
libdrm
|
||||||
|
libfreetype.so
|
||||||
|
libiec61883
|
||||||
|
libmodplug
|
||||||
|
libomxil-bellagio
|
||||||
|
libpulse
|
||||||
|
libraw1394
|
||||||
|
libsoxr
|
||||||
|
libssh
|
||||||
|
libtheora
|
||||||
|
libva.so
|
||||||
|
libva-drm.so
|
||||||
|
libva-x11.so
|
||||||
|
libvdpau
|
||||||
|
libvidstab.so
|
||||||
|
libvorbisenc.so
|
||||||
|
libvorbis.so
|
||||||
|
libvpx.so
|
||||||
|
libwebp
|
||||||
|
libx11
|
||||||
|
libx264.so
|
||||||
|
libx265.so
|
||||||
|
libxcb
|
||||||
|
libxext
|
||||||
|
libxml2
|
||||||
|
libxv
|
||||||
|
libxvidcore.so
|
||||||
|
opencore-amr
|
||||||
|
openjpeg2
|
||||||
|
opus
|
||||||
|
sdl2
|
||||||
|
speex
|
||||||
|
v4l-utils
|
||||||
|
xz
|
||||||
|
zlib
|
||||||
|
)
|
||||||
|
makedepends=(
|
||||||
|
git
|
||||||
|
ladspa
|
||||||
|
nasm
|
||||||
)
|
)
|
||||||
makedepends=('git' 'ladspa' 'yasm')
|
|
||||||
optdepends=('ladspa: LADSPA filters')
|
optdepends=('ladspa: LADSPA filters')
|
||||||
provides=(
|
provides=(
|
||||||
'libavcodec.so' 'libavdevice.so' 'libavfilter.so' 'libavformat.so'
|
libavcodec.so
|
||||||
'libavutil.so' 'libpostproc.so' 'libswresample.so' 'libswscale.so'
|
libavdevice.so
|
||||||
|
libavfilter.so
|
||||||
|
libavformat.so
|
||||||
|
libavutil.so
|
||||||
|
libpostproc.so
|
||||||
|
libswresample.so
|
||||||
|
libswscale.so
|
||||||
)
|
)
|
||||||
source=("git+https://git.ffmpeg.org/ffmpeg.git#tag=n${pkgver}")
|
source=(git+https://git.ffmpeg.org/ffmpeg.git#tag=n${pkgver})
|
||||||
sha256sums=('SKIP')
|
sha256sums=(SKIP)
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd ffmpeg
|
cd ffmpeg
|
||||||
|
|
Loading…
Reference in a new issue