2012-09-20 14:27:56 +00:00
|
|
|
# Contributor tomasgroth at yahoo.dk
|
|
|
|
# Contributor WarheadsSE <max@warheads.net>
|
2013-06-12 04:52:38 +00:00
|
|
|
|
2012-09-20 14:27:56 +00:00
|
|
|
buildarch=16
|
|
|
|
|
2014-11-19 05:48:23 +00:00
|
|
|
pkgname=kodi-rbp-git
|
2015-02-01 06:10:38 +00:00
|
|
|
pkgver=15.20150131
|
2014-07-13 05:09:52 +00:00
|
|
|
pkgrel=1
|
2012-09-20 14:27:56 +00:00
|
|
|
pkgdesc="A software media player and entertainment hub for digital media for the Raspberry Pi"
|
|
|
|
arch=('armv6h')
|
2014-11-19 05:48:23 +00:00
|
|
|
url="http://kodi.tv"
|
2012-09-20 14:27:56 +00:00
|
|
|
license=('GPL' 'custom')
|
2015-02-01 06:10:38 +00:00
|
|
|
depends=('hicolor-icon-theme' 'fribidi' 'lzo2' 'smbclient' 'giflib' 'libtiff' 'libva' 'libpng'
|
|
|
|
'libcdio' 'yajl' 'libmariadbclient' 'libjpeg-turbo' 'libsamplerate' 'libssh' 'libmicrohttpd'
|
|
|
|
'sdl_image' 'python2' 'libass' 'libmpeg2' 'libmad' 'libmodplug' 'jasper' 'rtmpdump' 'unzip'
|
|
|
|
'xorg-xdpyinfo' 'libbluray' 'libnfs' 'afpfs-ng' 'avahi' 'bluez-libs' 'tinyxml'
|
|
|
|
'raspberrypi-firmware' 'libcec' 'libplist' 'swig' 'taglib' 'libxslt' 'shairplay-git')
|
2013-06-08 18:05:56 +00:00
|
|
|
makedepends=('boost' 'cmake' 'gperf' 'nasm' 'zip' 'udisks' 'upower' 'git' 'autoconf' 'java-environment')
|
2012-09-20 14:27:56 +00:00
|
|
|
optdepends=(
|
|
|
|
'lirc: remote controller support'
|
|
|
|
'udisks: automount external drives'
|
2014-01-28 10:08:26 +00:00
|
|
|
'upower: used to trigger power management functionality'
|
2013-11-26 09:41:13 +00:00
|
|
|
'unrar: access compressed files without unpacking them')
|
2013-11-24 12:38:29 +00:00
|
|
|
|
2015-02-01 06:10:38 +00:00
|
|
|
provides=('xbmc' 'kodi')
|
|
|
|
conflicts=('xbmc' 'kodi')
|
2014-11-19 05:48:23 +00:00
|
|
|
replaces=('xbmc-rbp-git')
|
|
|
|
install="kodi.install"
|
|
|
|
source=('kodi.service'
|
2014-08-01 07:34:08 +00:00
|
|
|
'polkit.rules')
|
2014-01-24 22:44:10 +00:00
|
|
|
|
2015-02-01 06:10:38 +00:00
|
|
|
md5sums=('11cbf4307dd468dc9fa638bc8a13846b'
|
|
|
|
'725bcdb8a5557374ea3522169a8a6423')
|
2013-06-12 04:52:38 +00:00
|
|
|
|
|
|
|
_gitname="xbmc"
|
|
|
|
_gitroot="git://github.com/xbmc"
|
2014-06-07 19:29:17 +00:00
|
|
|
|
|
|
|
# Only change _gitbranch if master has moved on to the next release number
|
|
|
|
# but there's hasn't been a stable release yet.
|
|
|
|
_gitbranch="master"
|
2012-09-20 14:27:56 +00:00
|
|
|
|
|
|
|
_prefix=/usr
|
|
|
|
|
2013-04-08 18:51:48 +00:00
|
|
|
prepare() {
|
2013-06-12 04:52:38 +00:00
|
|
|
cd "${srcdir}"
|
|
|
|
|
|
|
|
|
|
|
|
msg2 "Connecting to GIT server..."
|
|
|
|
|
|
|
|
if [[ -d "${_gitname}" ]]; then
|
|
|
|
cd "${_gitname}" && git pull origin
|
|
|
|
msg2 "The local files are updated."
|
|
|
|
else
|
2014-04-03 06:14:06 +00:00
|
|
|
git clone --branch=${_gitbranch} --depth 1 "${_gitroot}/${_gitname}"
|
2013-06-12 04:52:38 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
msg2 "GIT checkout done or server timeout."
|
|
|
|
|
|
|
|
|
2012-09-20 14:27:56 +00:00
|
|
|
cd "${srcdir}/${_gitname}"
|
|
|
|
|
|
|
|
# fix lsb_release dependency
|
|
|
|
sed -i -e 's:/usr/bin/lsb_release -d:cat /etc/arch-release:' xbmc/utils/SystemInfo.cpp
|
2013-04-08 18:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${_gitname}"
|
2012-09-20 14:27:56 +00:00
|
|
|
|
2014-11-19 05:48:23 +00:00
|
|
|
# Bootstrapping KODI
|
2012-09-20 14:27:56 +00:00
|
|
|
./bootstrap
|
|
|
|
|
2014-11-19 05:48:23 +00:00
|
|
|
# Configuring KODI
|
2012-09-20 14:27:56 +00:00
|
|
|
export PYTHON_VERSION=2 # external python v2
|
|
|
|
# we need to compile for armv6 instead of armv5 to avoid problems compiling assembler code
|
2013-12-30 05:21:53 +00:00
|
|
|
export CFLAGS="-Ofast -mcpu=arm1176jzf-s -mtune=arm1176jzf-s -fexcess-precision=fast -mfloat-abi=hard \
|
2014-02-02 05:51:10 +00:00
|
|
|
-mfpu=vfp -mabi=aapcs-linux -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=1 \
|
2013-12-30 05:21:53 +00:00
|
|
|
-I/opt/vc/include/ -I/opt/vc/include/IL -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
|
|
|
|
export CXXFLAGS="-Ofast -mcpu=arm1176jzf-s -mtune=arm1176jzf-s -fexcess-precision=fast -mfloat-abi=hard -mfpu=vfp \
|
2014-02-02 05:51:10 +00:00
|
|
|
-mabi=aapcs-linux -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=1 \
|
2013-12-30 05:21:53 +00:00
|
|
|
-I/opt/vc/include/ -I/opt/vc/include/IL -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
|
2012-09-20 14:27:56 +00:00
|
|
|
export LDFLAGS="$LDFLAGS -L/opt/vc/lib"
|
2014-09-22 05:42:32 +00:00
|
|
|
|
|
|
|
# If build fails try uncommenting the line below first
|
|
|
|
#export MAKEFLAGS="-j1"
|
2013-12-30 05:21:53 +00:00
|
|
|
|
2012-09-20 14:27:56 +00:00
|
|
|
./configure --prefix=$_prefix --exec-prefix=$_prefix \
|
2013-12-30 05:21:53 +00:00
|
|
|
--with-platform=raspberry-pi \
|
|
|
|
--disable-gl \
|
|
|
|
--enable-gles \
|
|
|
|
--disable-x11 \
|
|
|
|
--disable-sdl \
|
|
|
|
--enable-optimizations \
|
|
|
|
--disable-goom \
|
|
|
|
--disable-pulse \
|
|
|
|
--disable-vaapi \
|
|
|
|
--disable-vdpau \
|
|
|
|
--disable-xrandr \
|
|
|
|
--enable-airplay \
|
|
|
|
--enable-airtunes \
|
|
|
|
--disable-alsa \
|
|
|
|
--enable-avahi \
|
|
|
|
--enable-libbluray \
|
|
|
|
--enable-dvdcss \
|
|
|
|
--disable-debug \
|
|
|
|
--disable-joystick \
|
|
|
|
--disable-mid \
|
|
|
|
--enable-nfs \
|
|
|
|
--disable-profiling \
|
|
|
|
--disable-projectm \
|
|
|
|
--enable-rsxs \
|
|
|
|
--enable-rtmp \
|
|
|
|
--disable-vaapi \
|
|
|
|
--enable-optical-drive \
|
2015-02-01 06:10:38 +00:00
|
|
|
--enable-player=omxplayer \
|
|
|
|
# --enable-texturepacker
|
2012-09-20 14:27:56 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${_gitname}"
|
|
|
|
# Running make install
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
|
|
|
|
# run feh with python2
|
2014-11-19 05:48:23 +00:00
|
|
|
sed -i -e 's/python/python2/g' ${pkgdir}${_prefix}/bin/kodi
|
2012-09-20 14:27:56 +00:00
|
|
|
|
|
|
|
# lsb_release fix
|
2014-11-19 05:48:23 +00:00
|
|
|
sed -i -e 's/which lsb_release > \/dev\/null/\[ -f \/etc\/arch-release ]/g' "${pkgdir}${_prefix}/bin/kodi"
|
|
|
|
sed -i -e "s/lsb_release -a 2> \/dev\/null | sed -e 's\/\^\/ \/'/cat \/etc\/arch-release/g" "${pkgdir}${_prefix}/bin/kodi"
|
2012-09-20 14:27:56 +00:00
|
|
|
|
|
|
|
# Tools
|
2015-02-01 06:10:38 +00:00
|
|
|
#install -D -m 0755 "${srcdir}/${_gitname}/tools/TexturePacker/TexturePacker" "${pkgdir}${_prefix}/lib/kodi"
|
2012-09-20 14:27:56 +00:00
|
|
|
|
|
|
|
# Licenses
|
2014-11-19 05:48:23 +00:00
|
|
|
install -dm755 "${pkgdir}${_prefix}/share/licenses/${pkgname}"
|
2012-09-20 14:27:56 +00:00
|
|
|
for licensef in LICENSE.GPL copying.txt; do
|
2014-11-19 05:48:23 +00:00
|
|
|
mv "${pkgdir}${_prefix}/share/doc/kodi/${licensef}" "${pkgdir}${_prefix}/share/licenses/${pkgname}"
|
2012-09-20 14:27:56 +00:00
|
|
|
done
|
|
|
|
|
2014-11-19 05:48:23 +00:00
|
|
|
install -Dm0644 $srcdir/kodi.service $pkgdir/usr/lib/systemd/system/kodi.service
|
|
|
|
install -Dm0644 $srcdir/polkit.rules $pkgdir/usr/share/polkit-1/rules.d/10-kodi.rules
|
2014-01-28 10:08:26 +00:00
|
|
|
chmod 0700 $pkgdir/usr/share/polkit-1/rules.d/
|
2012-09-20 14:27:56 +00:00
|
|
|
}
|