blob: 03cf7e90bfc75e28f77f614b0557321a9ae42f2e (
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
|
# vim:set ts=2 sw=2 et:
# Maintainer Eric Woudstra < ericwouds AT gmail DOT com >
# Contributor: graysky <therealgraysky AT protonmail DOT com>
# Contributor: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: DonVla <donvla@users.sourceforge.net>
# Contributor: Ulf Winkelvos <ulf [at] winkelvos [dot] de>
# Contributor: Ralf Barth <archlinux dot org at haggy dot org>
# Contributor: B & monty - Thanks for your hints :)
# Contributor: marzoul
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Brad Fanella <bradfanella@archlinux.us>
# Contributor: [vEX] <niechift.dot.vex.at.gmail.dot.com>
# Contributor: Zeqadious <zeqadious.at.gmail.dot.com>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Maxime Gauduin <alucryd@gmail.com>
#
# Original credits go to Edgar Hucek <gimli at dark-green dot com>
# for his xbmc-vdpau-vdr PKGBUILD at https://archvdr.svn.sourceforge.net/svnroot/archvdr/trunk/archvdr/xbmc-vdpau-vdr/PKGBUILD
# Edited so Kodi builds with only external libraries.
# Install the ffmpeg of your choice.
# Then install with pacman: flatbuffers libdvdcss libdvdnav libdvdread fmt spdlog
# from AUR: libcrossguid-git libudfread-git fstrcmp
# set this to anything to build with clang rather than with gcc
_clangbuild=
pkgbase=kodi-ext-git
pkgname=("$pkgbase" "$pkgbase-eventclients" "$pkgbase-tools-texturepacker" "$pkgbase-dev")
pkgver=21.1.0r65761.29f57cdbbe0
pkgrel=1
arch=('x86_64' 'armv7h' 'aarch64')
url="https://kodi.tv"
license=('GPL2')
makedepends=(
'afpfs-ng' 'bluez-libs' 'cmake' 'curl' 'dav1d' 'doxygen' 'git' 'glew'
'gperf' 'hicolor-icon-theme' 'java-runtime' 'libaacs' 'libass'
'libbluray' 'libcdio' 'libcec' 'libgl' 'mariadb-libs' 'libmicrohttpd'
'libmodplug' 'libmpeg2' 'libnfs' 'libplist' 'libpulse' 'libva'
'libxrandr' 'libxslt' 'lirc' 'lzo' 'mesa' 'nasm'
'python-pycryptodomex' 'python-pillow' 'python-pybluez'
'python-simplejson' 'shairplay' 'smbclient' 'taglib' 'tinyxml' 'swig'
'upower' 'giflib' 'rapidjson' 'ghostscript' 'meson' 'gtest' 'graphviz'
'libdisplay-info' 'tinyxml2' 'pcre'
# wayland
'wayland-protocols' 'waylandpp' 'libxkbcommon'
# gbm
'libinput'
# external
'ffmpeg' 'flatbuffers'
'libudfread-git' 'fstrcmp'
'fmt' 'spdlog' 'libcrossguid-git'
)
# At this moment not possible to use as external: 'libdvdcss' 'libdvdnav' 'libdvdread'
# See: https://github.com/xbmc/xbmc/issues/15899
[[ -n "$_clangbuild" ]] && makedepends+=('clang' 'lld' 'llvm')
_gitname='xbmc'
_codename=master
options=(!lto)
_libdvdcss_version="1.4.3-Next-Nexus-Alpha2-2"
_libdvdnav_version="6.1.1-Next-Nexus-Alpha2-2"
_libdvdread_version="6.1.3-Next-Nexus-Alpha2-2"
source=("git+https://github.com/xbmc/xbmc.git#branch=$_codename"
"$pkgbase-libdvdcss-$_libdvdcss_version.tar.gz::https://github.com/xbmc/libdvdcss/archive/$_libdvdcss_version.tar.gz"
"$pkgbase-libdvdnav-$_libdvdnav_version.tar.gz::https://github.com/xbmc/libdvdnav/archive/$_libdvdnav_version.tar.gz"
"$pkgbase-libdvdread-$_libdvdread_version.tar.gz::https://github.com/xbmc/libdvdread/archive/$_libdvdread_version.tar.gz"
)
b2sums=('SKIP' 'SKIP' 'SKIP' 'SKIP')
for p in $(shopt -s nullglob; echo *.patch) ; do
source+=($p)
b2sums+=(SKIP)
done
prepare() {
[[ -d kodi-build ]] && rm -rf kodi-build
mkdir -p "$srcdir/kodi-build"
cd "$_gitname"
_lastbranch=$(git branch --all --sort='-*authordate' | tail -2 | head -1)
git reset --hard ${_lastbranch}
echo "=============================="
echo "Building branch ${_lastbranch}"
echo "=============================="
for p in $(shopt -s nullglob; echo $srcdir/*.patch) ; do
git apply -v "$p"
echo
done
if [[ -n "$_clangbuild" ]]; then
echo "Building with clang"
export CC=clang CXX=clang++
fi
if [[ $CARCH == "armv7h" ]]; then
echo "Patching for gcc14 bug for armv7h"
# Error: bad immediate value for 8-bit offset
sed -i 's/class CGameLoop : protected CThread/class CGameLoop : virtual protected CThread/' \
"$srcdir/$_gitname/xbmc/cores/RetroPlayer/playback/GameLoop.h"
fi
}
pkgver() {
cd "$_gitname"
printf "%sr%s.%s" \
"$(cat "$srcdir/$_gitname/version.txt" | grep "VERSION_CODE" | cut -d' ' -f2)" \
"$(git rev-list --count HEAD)" \
"$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/kodi-build"
# fix build breakage introduced with gcc-12.1.0-1
export CFLAGS+=" -Wno-error"
export CXXFLAGS+=" -Wno-error"
export LDFLAGS="${LDFLAGS/-Wl,-z,pack-relative-relocs/}"
export LDFLAGS+=" -ldvdnav -ldvdread -ldvdcss"
_args=(
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_INSTALL_LIBDIR=/usr/lib
# -DUSE_LTO=$(nproc)
-DUSE_LTO=OFF
-DVERBOSE=ON
-DENABLE_LDGOLD=OFF
-DENABLE_EVENTCLIENTS=ON
-DFFMPEG_PATH=/usr
-DENABLE_INTERNAL_FFMPEG=OFF
-DENABLE_INTERNAL_FMT=OFF
-DENABLE_INTERNAL_SPDLOG=OFF
-DENABLE_INTERNAL_CROSSGUID=OFF
-DENABLE_INTERNAL_FSTRCMP=OFF
-DENABLE_INTERNAL_FLATBUFFERS=OFF
-DENABLE_INTERNAL_UDFREAD=OFF
-DENABLE_MYSQLCLIENT=ON
-DENABLE_VAAPI=ON
-DENABLE_VDPAU=ON
-DAPP_RENDER_SYSTEM=gles
-DCORE_PLATFORM_NAME="x11 wayland gbm"
-Dlibdvdcss_URL="$srcdir/$pkgbase-libdvdcss-$_libdvdcss_version.tar.gz"
-Dlibdvdnav_URL="$srcdir/$pkgbase-libdvdnav-$_libdvdnav_version.tar.gz"
-Dlibdvdread_URL="$srcdir/$pkgbase-libdvdread-$_libdvdread_version.tar.gz"
-DENABLE_DVDCSS=ON
)
echo "building kodi"
cmake "${_args[@]}" ../"$_gitname"
make
}
# kodi
# components: kodi
package_kodi-ext-git() {
pkgdesc="Kodi build with all external libraries"
depends=(
'bluez-libs' 'curl' 'dav1d' 'desktop-file-utils' 'hicolor-icon-theme'
'lcms2' 'libass' 'libbluray' 'libcdio' 'libcec' 'libmicrohttpd' 'libnfs'
'libplist' 'libpulse' 'libva' 'libvdpau' 'libxslt' 'lirc' 'mariadb-libs'
'mesa' 'python-pillow' 'python-pycryptodomex' 'python-simplejson'
'shairplay' 'smbclient' 'sqlite' 'taglib' 'tinyxml'
'libxrandr' 'libxkbcommon' 'waylandpp' 'libinput' 'pcre'
# external
'ffmpeg' 'flatbuffers'
'libdvdcss' 'libdvdnav' 'libdvdread' 'libudfread-git' 'fstrcmp'
'fmt' 'spdlog' 'libcrossguid-git'
)
[[ -n "$_clangbuild" ]] && depends+=('glu')
optdepends=(
'afpfs-ng: Apple shares support'
'bluez: Blutooth support'
'python-pybluez: Bluetooth support'
'pulseaudio: PulseAudio support'
'upower: Display battery level'
)
provides=("kodi=${pkgver}" 'kodi-x11' 'kodi-wayland' 'kodi-gbm')
replaces=('kodi' 'kodi-x11' 'kodi-wayland' 'kodi-gbm')
conflicts=('kodi' 'kodi-x11' 'kodi-wayland' 'kodi-gbm')
_components=(
'kodi'
'kodi-bin'
)
cd kodi-build
for _cmp in ${_components[@]}; do
DESTDIR="$pkgdir" /usr/bin/cmake \
-DCMAKE_INSTALL_COMPONENT="$_cmp" \
-P cmake_install.cmake
done
}
# kodi-eventclients
# components: kodi-eventclients-common kodi-eventclients-ps3 kodi-eventclients-kodi-send
package_kodi-ext-git-eventclients() {
pkgdesc="Kodi Event Clients (master branch)"
provides=("kodi-eventclients=${pkgver}")
conflicts=('kodi-eventclients')
optdepends=(
'kodi: local machine eventclient use'
'python: most eventclients are implemented in python'
)
_components=(
'kodi-eventclients-common'
'kodi-eventclients-ps3'
'kodi-eventclients-kodi-send'
)
cd kodi-build
for _cmp in ${_components[@]}; do
DESTDIR="$pkgdir" /usr/bin/cmake \
-DCMAKE_INSTALL_COMPONENT="$_cmp" \
-P cmake_install.cmake
done
}
# kodi-tools-texturepacker
# components: kodi-tools-texturepacker
package_kodi-ext-git-tools-texturepacker() {
pkgdesc="Kodi Texturepacker tool (master branch)"
provides=("kodi-tools-texturepacker=${pkgver}")
conflicts=('kodi-tools-texturepacker')
depends=('libpng' 'giflib' 'libjpeg-turbo' 'lzo')
_components=(
'kodi-tools-texturepacker'
)
cd kodi-build
for _cmp in ${_components[@]}; do
DESTDIR="$pkgdir" /usr/bin/cmake \
-DCMAKE_INSTALL_COMPONENT="$_cmp" \
-P cmake_install.cmake
done
}
# kodi-dev
# components: kodi-addon-dev kodi-eventclients-dev
package_kodi-ext-git-dev() {
pkgdesc="Kodi dev files (master branch)"
depends=('kodi-ext-git')
provides=("kodi-dev=${pkgver}")
conflicts=('kodi-dev')
_components=(
'kodi-addon-dev'
'kodi-eventclients-dev'
)
cd kodi-build
for _cmp in ${_components[@]}; do
DESTDIR="$pkgdir" /usr/bin/cmake \
-DCMAKE_INSTALL_COMPONENT="$_cmp" \
-P cmake_install.cmake
done
}
|