2015-03-31 05:40:41 +00:00
|
|
|
# Contributor Oleg Rakhmanov <oleg [at] archlinuxarm [dot] com>
|
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
|
|
|
|
2015-02-05 00:16:53 +00:00
|
|
|
buildarch=20
|
2012-09-20 14:27:56 +00:00
|
|
|
|
2015-03-31 05:40:41 +00:00
|
|
|
_prefix=/usr
|
|
|
|
|
|
|
|
pkgbase=kodi-rbp-git
|
|
|
|
pkgname=('kodi-rbp-git' 'kodi-rbp-git-eventclients')
|
|
|
|
pkgver=15.20150330
|
|
|
|
|
|
|
|
_commit=e826779451fdcb865f6a66cc092e17d6ec5f2d6e
|
2015-04-19 13:44:55 +00:00
|
|
|
pkgrel=2
|
2012-09-20 14:27:56 +00:00
|
|
|
pkgdesc="A software media player and entertainment hub for digital media for the Raspberry Pi"
|
2015-03-31 05:40:41 +00:00
|
|
|
arch=('armv6h' 'armv7h')
|
2014-11-19 05:48:23 +00:00
|
|
|
url="http://kodi.tv"
|
2015-03-31 05:40:41 +00:00
|
|
|
license=('GPL2')
|
|
|
|
makedepends=('hicolor-icon-theme' 'fribidi' 'lzo2' 'smbclient' 'libtiff' 'libva' 'libpng' 'libcdio'
|
|
|
|
'yajl' 'libmariadbclient' 'libjpeg-turbo' 'libsamplerate' 'libssh' 'libmicrohttpd'
|
|
|
|
'sdl_image' 'python2' 'python2-pillow' 'python2-pybluez' 'python2-simplejson' 'libass'
|
|
|
|
'libmpeg2' 'libmad' 'libmodplug' 'jasper' 'rtmpdump' 'unzip' 'xorg-xdpyinfo' 'libbluray'
|
|
|
|
'libnfs' 'afpfs-ng' 'avahi' 'bluez-libs' 'tinyxml' 'raspberrypi-firmware' 'libcec-rpi'
|
|
|
|
'libplist' 'swig' 'taglib' 'libxslt' 'shairplay' 'boost' 'cmake' 'gperf' 'nasm' 'zip'
|
|
|
|
'udisks' 'upower' 'git' 'autoconf' 'java-environment')
|
|
|
|
source=("kodi-${_commit}.tar.gz::https://github.com/xbmc/xbmc/archive/${_commit}.tar.gz"
|
|
|
|
'kodi.service'
|
2014-08-01 07:34:08 +00:00
|
|
|
'polkit.rules')
|
2014-01-24 22:44:10 +00:00
|
|
|
|
2015-03-31 05:40:41 +00:00
|
|
|
sha256sums=('9302b3cc9eb72f4e17e7a44a46d2ae739937fcf1bbe52f0408da8b6c974b8756'
|
|
|
|
'5235068d5800d69f0287087815990e7fe8d6572733d60c8800546d35f608e87f'
|
|
|
|
'9ea592205023ba861603d74b63cdb73126c56372a366dc4cb7beb379073cbb96')
|
2013-04-08 18:51:48 +00:00
|
|
|
prepare() {
|
2015-03-31 05:40:41 +00:00
|
|
|
cd "$srcdir/xbmc-${_commit}"
|
|
|
|
|
|
|
|
find -type f -name *.py -exec sed 's|^#!.*python$|#!/usr/bin/python2|' -i "{}" +
|
|
|
|
sed 's|^#!.*python$|#!/usr/bin/python2|' -i tools/depends/native/rpl-native/rpl
|
|
|
|
sed 's/python/python2/' -i tools/Linux/kodi.sh.in
|
|
|
|
sed 's/shell python/shell python2/' -i tools/EventClients/Makefile.in
|
|
|
|
# disable wiiremote due to incompatibility with bluez-5.29
|
|
|
|
sed '/WiiRemote/d' -i tools/EventClients/Makefile.in
|
|
|
|
sed '/mkdir -p $(DESTDIR)$(bindir)/i \
|
|
|
|
install:' -i tools/EventClients/Makefile.in
|
2013-04-08 18:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2015-03-31 05:40:41 +00:00
|
|
|
cd "${srcdir}/xbmc-${_commit}"
|
2012-09-20 14:27:56 +00:00
|
|
|
|
2015-03-31 05:40:41 +00:00
|
|
|
# Bootstrapping
|
|
|
|
MAKEFLAGS=-j1 ./bootstrap
|
2012-09-20 14:27:56 +00:00
|
|
|
|
2015-03-31 05:40:41 +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
|
2015-02-05 00:16:53 +00:00
|
|
|
FLAGS="-Ofast -fexcess-precision=fast -mfloat-abi=hard -mabi=aapcs-linux -pipe -fstack-protector --param=ssp-buffer-size=4 \
|
|
|
|
-D_FORTIFY_SOURCE=1 -I/opt/vc/include/ -I/opt/vc/include/IL -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
|
2015-02-10 05:36:41 +00:00
|
|
|
[[ $CARCH == "armv6h" ]] && export CFLAGS="$FLAGS -mcpu=arm1176jzf-s -mtune=arm1176jzf-s -mfpu=vfp" && export CXXFLAGS="$FLAGS -mcpu=arm1176jzf-s -mtune=arm1176jzf-s -mfpu=vfp"
|
2015-02-05 00:16:53 +00:00
|
|
|
[[ $CARCH == "armv7h" ]] && export CFLAGS="$FLAGS -mcpu=cortex-a7 -mtune=cortex-a7 -mfpu=neon-vfpv4 -mvectorize-with-neon-quad" && export CXXFLAGS="$FLAGS -mcpu=cortex-a7 -mtune=cortex-a7 -mfpu=neon-vfpv4 -mvectorize-with-neon-quad"
|
|
|
|
|
2012-09-20 14:27:56 +00:00
|
|
|
export LDFLAGS="$LDFLAGS -L/opt/vc/lib"
|
2015-03-31 05:40:41 +00:00
|
|
|
|
2014-09-22 05:42:32 +00:00
|
|
|
# If build fails try uncommenting the line below first
|
2015-03-31 05:40:41 +00:00
|
|
|
# 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 \
|
|
|
|
--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 \
|
2015-03-31 05:40:41 +00:00
|
|
|
--with-lirc-device=/run/lirc/lircd \
|
|
|
|
ac_cv_lib_bluetooth_hci_devid=no
|
2012-09-20 14:27:56 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
2015-03-31 05:40:41 +00:00
|
|
|
package_kodi-rbp-git() {
|
|
|
|
pkgdesc="A software media player and entertainment hub for digital media (Raspberry Pi)"
|
|
|
|
|
|
|
|
# depends expected for kodi plugins:
|
|
|
|
# 'python2-pillow' 'python2-pybluez' 'python2-simplejson'
|
|
|
|
# depends expeced in FEH.py
|
|
|
|
# 'mesa-demos' 'xorg-xdpyinfo'
|
|
|
|
depends=('hicolor-icon-theme' 'fribidi' 'lzo2' 'smbclient' 'libtiff' 'libva' 'libpng' 'libcdio'
|
|
|
|
'yajl' 'libmariadbclient' 'libjpeg-turbo' 'libsamplerate' 'libssh' 'libmicrohttpd'
|
|
|
|
'sdl_image' 'python2' 'python2-pillow' 'python2-pybluez' 'python2-simplejson' 'libass'
|
|
|
|
'libmpeg2' 'libmad' 'libmodplug' 'jasper' 'rtmpdump' 'unzip' 'xorg-xdpyinfo' 'libbluray'
|
|
|
|
'libnfs' 'avahi' 'bluez-libs' 'tinyxml' 'raspberrypi-firmware' 'libcec-rpi'
|
|
|
|
'libplist' 'swig' 'taglib' 'libxslt' 'shairplay')
|
|
|
|
|
|
|
|
optdepends=(
|
|
|
|
'afpfs-ng: Apple shares support'
|
|
|
|
'lirc: remote controller support'
|
|
|
|
'polkit: permissions for automounting external drives and power management functionality'
|
|
|
|
'udisks: automount external drives'
|
|
|
|
'upower: used to trigger power management functionality'
|
|
|
|
'unrar: access compressed files without unpacking them'
|
|
|
|
'lsb-release: log distro information in crashlog')
|
|
|
|
|
|
|
|
install="kodi.install"
|
|
|
|
provides=('xbmc' 'kodi')
|
2015-04-19 13:44:55 +00:00
|
|
|
conflicts=('xbmc' 'kodi' 'shairplay-git' 'arm-mem-git')
|
2015-03-31 05:40:41 +00:00
|
|
|
replaces=('xbmc-rbp-git')
|
|
|
|
|
|
|
|
cd "$srcdir/xbmc-${_commit}"
|
2012-09-20 14:27:56 +00:00
|
|
|
# Running make install
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
|
2015-03-31 05:40:41 +00:00
|
|
|
# We will no longer support the xbmc name
|
|
|
|
rm "$pkgdir/usr/share/xsessions/xbmc.desktop"
|
|
|
|
rm "$pkgdir/usr/bin/"xbmc{,-standalone}
|
|
|
|
# we will leave /usr/{include,lib,share}/xbmc for now
|
2012-09-20 14:27:56 +00:00
|
|
|
|
|
|
|
# Licenses
|
2015-03-31 05:40:41 +00:00
|
|
|
install -d -m 0755 "${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
|
|
|
}
|
2015-03-31 05:40:41 +00:00
|
|
|
|
|
|
|
package_kodi-rbp-git-eventclients() {
|
|
|
|
pkgdesc="Kodi Event Clients (Raspberry Pi)"
|
|
|
|
provides=('kodi-eventclients')
|
|
|
|
conflicts=('kodi-eventclients')
|
|
|
|
depends=('cwiid')
|
|
|
|
|
|
|
|
cd "$srcdir/xbmc-${_commit}"
|
|
|
|
|
|
|
|
make DESTDIR="$pkgdir" eventclients WII_EXTRA_OPTS=-DCWIID_OLD
|
|
|
|
}
|