blob: 1adfc04df343d233fba26fc63510063b9049fd0d (
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
|
# Maintainer: Gonzalo Exequiel Pedone <hipersayan DOT x AT gmail DOT com>
# Contributor: Martchus <martchus@gmx.net>
# Contributor: Karl-Felix Glatzer <karl.glatzer@gmx.de>
_android_arch=riscv64
pkgname=android-${_android_arch}-x264-bootstrap
pkgver=157.r72db4377
_commit=72db437770fd1ce3961f624dd57a8e75ff65ae0b
pkgrel=4
arch=('any')
pkgdesc="Free library for encoding H264/AVC video streams (Android ${_android_arch})"
license=('GPL')
url='https://www.videolan.org/developers/x264.html'
groups=('android-x264-bootstrap')
depends=('android-ndk')
makedepends=('android-configure'
'yasm'
'git')
provides=(${pkgname%-bootstrap})
conflicts=(${pkgname%-bootstrap})
options=(!strip !buildflags staticlibs !emptydirs)
source=("git+https://code.videolan.org/videolan/x264.git#commit=${_commit}"
'0001-Fix-soname.patch'
'0002-Remove-lpthread.patch'
'0003-Do-not-replace-ftell-and-fseek.patch')
md5sums=('SKIP'
'e8322f7da77816cd721183ed42f8a1bc'
'ef45412614fcd0fe1a186672fcbbf47d'
'8114198c19f2abd3503af34030604225')
pkgver() {
cd "${srcdir}/x264"
local _ver=$(grep '#define X264_BUILD' x264.h | cut -d' ' -f3)
local _rev=$(git rev-parse --short HEAD)
echo ${_ver}.r${_rev}
}
prepare() {
cd "${srcdir}/x264"
patch -Np1 -i ../0001-Fix-soname.patch
patch -Np1 -i ../0002-Remove-lpthread.patch
patch -Np1 -i ../0003-Do-not-replace-ftell-and-fseek.patch
}
build() {
cd "${srcdir}/x264"
source android-env ${_android_arch}
target=${_android_arch/x86-/x86_}-linux-android
configue_opts="
--disable-cli"
# Platform specific patches
case "$_android_arch" in
x86)
configue_opts+="
--enable-pic
--disable-asm
--host=i686-linux"
;;
x86-64)
configue_opts+="
--disable-asm"
;;
riscv64)
target=openrisc-linux-android
configue_opts+="
--enable-pic
--disable-asm"
;;
*)
;;
esac
./configure \
--host=${target} \
--target=${target} \
--build=${CHOST} \
--prefix=${ANDROID_PREFIX} \
--libdir=${ANDROID_PREFIX_LIB} \
--includedir=${ANDROID_PREFIX_INCLUDE} \
--enable-shared \
--enable-static \
${configue_opts}
make $MAKEFLAGS
}
package() {
cd "${srcdir}/x264"
source android-env ${_android_arch}
make DESTDIR="${pkgdir}" install
${ANDROID_STRIP} -g --strip-unneeded "${pkgdir}/${ANDROID_PREFIX_LIB}"/*.so
${ANDROID_STRIP} -g "${pkgdir}/${ANDROID_PREFIX_LIB}"/*.a
}
|