blob: f54be6d2854ca41c4c6751d24114c2dceed132ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
# Maintainer: Muflone http://www.muflone.com/contacts/english/
pkgname=ffmpeg-compat-54
pkgver=1.2.12
pkgrel=5
pkgdesc="Compatibility package for ffmpeg to provide versions 54 of libavcodec, libavdevice and libavformat, not anymore provided by the ffmpeg package"
arch=('i686' 'x86_64')
url="http://ffmpeg.org/"
options=('!lto')
license=('GPL-3.0-only')
depends=('gsm' 'lame' 'opencore-amr' 'openjpeg' 'opus' 'rtmpdump' 'libvpx'
'schroedinger' 'speex' 'v4l-utils' 'xvidcore' 'libpulse' 'libx264'
'libtheora' 'libbluray' 'libmodplug' 'sdl' 'jack' 'libva' 'libavutil-52')
makedepends=('yasm' 'libass')
provides=('libavcodec.so' 'libavdevice.so' 'libavformat.so')
source=("https://ffmpeg.org/releases/ffmpeg-${pkgver}.tar.bz2"{,.asc}
"libvpx_VP8E_UPD_ENTROPY.patch"::"https://git.videolan.org/?p=ffmpeg.git;a=commitdiff_plain;h=6540fe04a3f9a11ba7084a49b3ee5fa2fc5b32ab"
"fix_compilation_with_x264_ge_153_1.patch"::"https://github.com/FFmpeg/FFmpeg/commit/89f704cabab446afc8ba6ecea76714a51b1df32b.patch"
"fix_compilation_with_x264_ge_153_2.patch"::"https://github.com/FFmpeg/FFmpeg/commit/2a111c99a60fdf4fe5eea2b073901630190c6c93.patch"
"fix_compilation_with_x264_ge_153_3.patch"::"https://github.com/FFmpeg/FFmpeg/commit/7e60c74329353db28db00552028bc88cd2a52346.patch"
"fix_compilation_with_x264_ge_153_4.patch"
"mathops_shift.patch"::"https://github.com/FFmpeg/FFmpeg/commit/effadce6c756247ea8bae32dc13bb3e6f464f0eb.patch"
"mpegvideo_ff_MPV_encode_picture.patch"
"hmac_incompatible_pointers.patch")
validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8') # ffmpeg-devel
sha256sums=('913ac95c7fad92c2a4ebcfd11850904f531845c75d45c3e4e4a693990fe2497d'
'SKIP'
'1e4a01ed62db525607f9d0c708ef7889474222f9ae31aac057c5bb67edf7e38f'
'ec632ef760df81c1fc0a6810a52c5882086068459be69ce5c85c763d748faea4'
'8871013ddb377afcf8902b22f9c19458f613326c5d51bd8cc0911a58d3618d41'
'd81c618d5bc59cadac5a876f73d563037e479bb2bfa9d70c1e8f50f41e4a07c9'
'35d813fc4228833839ca3be8a2b2aa7cac99e837f1643453c7166dddac5b2899'
'8fad5f253bcda7a17523dbfcbfcfd60b3db23783dcdb65998005cddc7c7776c3'
'7cc5f708288d944c219298974337ea69d60717c0f041eb2a8fa3237297414454'
'6232e56b911027ff3316374f0fa876d7991ad83262de20e8d246e02170c1733c')
prepare() {
cd "ffmpeg-${pkgver}"
patch -p1 -i "../libvpx_VP8E_UPD_ENTROPY.patch"
# Fixes for libx264 >= 153
patch -p1 -i "${srcdir}/fix_compilation_with_x264_ge_153_1.patch"
patch -p1 -i "${srcdir}/fix_compilation_with_x264_ge_153_2.patch"
patch -p1 -i "${srcdir}/fix_compilation_with_x264_ge_153_3.patch"
patch -p1 -i "${srcdir}/fix_compilation_with_x264_ge_153_4.patch"
# Fix for operand type mismatch for `shr'
patch -p1 -i "${srcdir}/mathops_shift.patch"
# Fix for incompatible pointers
patch -p1 -i "${srcdir}/mpegvideo_ff_MPV_encode_picture.patch"
patch -p1 -i "${srcdir}/hmac_incompatible_pointers.patch"
}
build() {
cd "ffmpeg-${pkgver}"
./configure \
--prefix=/usr \
--incdir="/usr/include" \
--shlibdir="/usr/lib" \
--libdir="/usr/lib" \
--disable-debug \
--disable-static \
--enable-dxva2 \
--disable-fontconfig \
--enable-gpl \
--enable-libass \
--enable-libbluray \
--enable-libfreetype \
--enable-libgsm \
--enable-libmodplug \
--enable-libmp3lame \
--enable-libopencore_amrnb \
--enable-libopencore_amrwb \
--enable-libopenjpeg \
--enable-libopus \
--enable-libpulse \
--enable-librtmp \
--enable-libschroedinger \
--enable-libspeex \
--enable-libtheora \
--enable-libv4l2 \
--enable-libvorbis \
--enable-libvpx \
--enable-libx264 \
--enable-libxvid \
--enable-runtime-cpudetect \
--enable-shared \
--enable-vdpau \
--enable-version3 \
--enable-x11grab \
--disable-doc \
--disable-programs \
--disable-avresample \
--disable-avfilter \
--disable-postproc \
--disable-swresample \
--disable-swscale
make
}
package() {
cd "ffmpeg-${pkgver}"
make DESTDIR="${pkgdir}" install-libs
cd "${pkgdir}/usr/lib"
rm -f *.so libavutil.*
}
|