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>
|
||||
|
||||
# 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 depends on aom, remove --enable-libaom
|
||||
|
||||
pkgname=ffmpeg
|
||||
pkgver=4.1
|
||||
pkgrel=1
|
||||
pkgrel=3
|
||||
epoch=1
|
||||
pkgdesc='Complete solution to record, convert and stream audio and video'
|
||||
arch=('x86_64')
|
||||
url='http://ffmpeg.org/'
|
||||
license=('GPL3')
|
||||
arch=(x86_64)
|
||||
url=https://ffmpeg.org/
|
||||
license=(GPL3)
|
||||
depends=(
|
||||
'alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'glibc' 'gmp' 'gnutls' 'gsm'
|
||||
'jack' 'lame' 'libavc1394' 'libdrm' 'libiec61883' 'libmodplug'
|
||||
'libomxil-bellagio' 'libpulse' 'libraw1394' 'libsoxr' 'libssh' 'libtheora'
|
||||
'libvdpau' 'libwebp' 'libx11' 'libxcb' 'libxext' 'libxml2' 'libxv'
|
||||
'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'
|
||||
alsa-lib
|
||||
bzip2
|
||||
fontconfig
|
||||
fribidi
|
||||
gmp
|
||||
gnutls
|
||||
gsm
|
||||
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')
|
||||
provides=(
|
||||
'libavcodec.so' 'libavdevice.so' 'libavfilter.so' 'libavformat.so'
|
||||
'libavutil.so' 'libpostproc.so' 'libswresample.so' 'libswscale.so'
|
||||
libavcodec.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}")
|
||||
sha256sums=('SKIP')
|
||||
source=(git+https://git.ffmpeg.org/ffmpeg.git#tag=n${pkgver})
|
||||
sha256sums=(SKIP)
|
||||
|
||||
build() {
|
||||
cd ffmpeg
|
||||
|
|
Loading…
Reference in a new issue