This commit is contained in:
parent
05f89b7f0b
commit
26f9506e22
1 changed files with 8 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'kodi'
|
# Template file for 'kodi'
|
||||||
pkgname=kodi
|
pkgname=kodi
|
||||||
version=16.1
|
version=16.1
|
||||||
revision=3
|
revision=4
|
||||||
patch_args="-Np1"
|
patch_args="-Np1"
|
||||||
_codename="Jarvis"
|
_codename="Jarvis"
|
||||||
wrksrc="xbmc-${version}-${_codename}"
|
wrksrc="xbmc-${version}-${_codename}"
|
||||||
|
@ -63,6 +63,13 @@ pre_configure() {
|
||||||
do_configure() {
|
do_configure() {
|
||||||
# Do not ship version check.
|
# Do not ship version check.
|
||||||
rm -rf addons/service.xbmc.versioncheck
|
rm -rf addons/service.xbmc.versioncheck
|
||||||
|
# kodi fails to find it's userdata if it's configured with --libfir=/usr/lib32, see
|
||||||
|
# https://github.com/voidlinux/void-packages/issues/3302
|
||||||
|
|
||||||
|
if [ "${XBPS_TARGET_MACHINE}" = "i686" ]; then
|
||||||
|
configure_args=${configure_args/--libdir=\/usr\/lib32/}
|
||||||
|
fi
|
||||||
|
|
||||||
./configure ${configure_args} \
|
./configure ${configure_args} \
|
||||||
--disable-debug --enable-optimizations --enable-gl \
|
--disable-debug --enable-optimizations --enable-gl \
|
||||||
--enable-sdl --enable-vdpau --enable-vaapi --enable-joystick \
|
--enable-sdl --enable-vdpau --enable-vaapi --enable-joystick \
|
||||||
|
|
Loading…
Reference in a new issue