blob: 0591a29043a5125ba51589a845fe2534181551fe (
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
106
107
|
# Maintainer: Karel Kočí <cynerd@email.cz>
pkgname=ffmpeg-rpi
pkgver=4.2.2
pkgrel=8
pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix - Raspberry Pi"
url="https://ffmpeg.org/"
arch="armhf armv7 aarch64"
license="GPL-2.0-or-later AND LGPL-2.1-or-later"
options="!check"
subpackages="$pkgname-dev $pkgname-doc"
provides="ffmpeg ffmpeg-libs"
provides_dev="ffmpeg-dev"
provides_doc="ffmpeg-doc"
makedepends="
alsa-lib-dev
coreutils
bzip2-dev
gnutls-dev
imlib2-dev
lame-dev
libass-dev
libssh-dev
libtheora-dev
libvorbis-dev
libvpx-dev
libxfixes-dev
opus-dev
perl-dev
raspberrypi-dev
sdl2-dev
v4l-utils-dev
x264-dev
x265-dev
xvidcore-dev
yasm
zlib-dev
"
source="https://ffmpeg.org/releases/ffmpeg-$pkgver.tar.xz
fix-libversion.patch"
# add support for AV1 codec for all archies except armhf and armv7
# as aom is not available on them
_aom="";
case "$CARCH" in
aarch64)
_aom="--enable-libaom"; makedepends="$makedepends aom-dev" ;;
esac
unpack() {
default_unpack
mv "ffmpeg-$pkgver" "$builddir"
}
build() {
local _dbg="--disable-debug"
[ -n "$DEBUG" ] && _dbg="--enable-debug"
./configure \
--prefix=/usr \
--target-os=linux \
--enable-avresample \
--enable-avfilter \
--enable-gnutls \
--enable-gpl \
--enable-libass \
--enable-libmp3lame \
--enable-libvorbis \
--enable-libvpx \
--enable-libxvid \
--enable-libx264 \
--enable-libx265 \
--enable-libtheora \
--enable-libv4l2 \
--enable-postproc \
--enable-pic \
--enable-pthreads \
--enable-shared \
--enable-libxcb \
--enable-libssh \
--enable-libopus \
--disable-stripping \
--disable-static \
--disable-librtmp \
--disable-vaapi \
--disable-vdpau \
--enable-omx \
--enable-omx-rpi \
--enable-mmal \
--extra-cflags="-I/opt/vc/include -I/opt/vc/include/IL" \
--extra-ldflags="-L/opt/vc/lib" \
--extra-libs="-lbcm_host -lvcos -lvchiq_arm -lmmal -lmmal_core -lmmal_util -lvcsm" \
$_aom $_dbg
make
cat libavcodec/libavcodec.version
cat */*.version
${CC:-gcc} -o tools/qt-faststart $CFLAGS tools/qt-faststart.c
make doc/ffmpeg.1 doc/ffplay.1
}
package() {
make DESTDIR="$pkgdir" install install-man
install -D -m755 tools/qt-faststart "$pkgdir/usr/bin/qt-faststart"
}
sha512sums="381cd6732fa699eb89000621cf34256920596ed1f9de3c2194dbad35fdf2165269eb7d3a147a0eb75dc18fbb6d601382b5801750e09fc63547766842f84208e3 ffmpeg-4.2.2.tar.xz
9125910cc402a36b92c0c92a13c1b435065ae3e18fbb4dc651d37b8dffbd69a57e706fa9efc009e989d9b8236fac5fca189ffeeb8a12f9d956d40b1cdda372c8 fix-libversion.patch"
|