2016-05-07 09:28:51 +00:00
|
|
|
# Maintainer: Oleg Rakhmanov <oleg@archlinuxarm.org>
|
2017-02-04 02:21:39 +00:00
|
|
|
# Contributor graysky <graysky AT archlinux DOT org>
|
|
|
|
# Contributor BlackIkeEagle < ike DOT devolder AT gmail DOT com >
|
2013-02-02 08:59:56 +00:00
|
|
|
# Contributor tomasgroth at yahoo.dk
|
|
|
|
# Contributor WarheadsSE <max@warheads.net>
|
2017-02-04 02:21:39 +00:00
|
|
|
# Contributor Adrian Fedoreanu <adrian [dot] fedoreanu [at] gmail [dot] com>
|
2014-05-22 10:34:19 +00:00
|
|
|
|
2015-02-05 00:13:27 +00:00
|
|
|
buildarch=20
|
2013-02-02 08:59:56 +00:00
|
|
|
|
2015-03-31 03:54:30 +00:00
|
|
|
_prefix=/usr
|
|
|
|
|
|
|
|
pkgbase=kodi-rbp
|
|
|
|
pkgname=('kodi-rbp' 'kodi-rbp-eventclients')
|
2017-02-04 02:21:39 +00:00
|
|
|
pkgver=17.0
|
|
|
|
_codename=Krypton
|
|
|
|
pkgrel=1
|
2013-02-02 08:59:56 +00:00
|
|
|
pkgdesc="A software media player and entertainment hub for digital media for the Raspberry Pi"
|
2015-02-05 00:13:27 +00:00
|
|
|
arch=('armv6h' 'armv7h')
|
2014-12-27 00:43:47 +00:00
|
|
|
url="http://kodi.tv"
|
2015-03-31 03:54:30 +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'
|
2016-05-05 07:05:05 +00:00
|
|
|
'libplist' 'swig' 'taglib' 'libxslt' 'shairplay' 'boost' 'cmake' 'gperf' 'nasm' 'zip'
|
2017-02-04 02:21:39 +00:00
|
|
|
'upower' 'autoconf' 'java-environment' 'libcrossguid-git' 'dcadec' 'libpulse' 'cwiid')
|
2014-06-07 18:23:30 +00:00
|
|
|
source=("https://github.com/xbmc/xbmc/archive/$pkgver-$_codename.tar.gz"
|
2014-12-27 00:43:47 +00:00
|
|
|
'kodi.service'
|
2017-02-04 02:21:39 +00:00
|
|
|
'99-kodi.rules'
|
|
|
|
'https://github.com/popcornmix/xbmc/commit/0c320b6cdd4fb409be45008e6b9042463d54b742.patch'
|
|
|
|
'https://github.com/popcornmix/xbmc/commit/4d983105d7fd65b1d92f2ae2602e6e1cdcaddbe0.patch'
|
|
|
|
'polkit.rules')
|
|
|
|
|
|
|
|
sha256sums=('4bfffa2493973ae15ab1d922632c09a2583908d6140bc4f58ec8f9314e4f6545'
|
|
|
|
'5235068d5800d69f0287087815990e7fe8d6572733d60c8800546d35f608e87f'
|
|
|
|
'b31570f95654434b01fd8531612fbb6be77cbc1c519dd60f92feae26eb160f3d'
|
|
|
|
'813f8c622c341eefb33774115199d2abe9c189cf2ce52e79719dbd42d48a1274'
|
|
|
|
'd830c010ead152bc9a9ba6b812c985d6e649bda7480fec9b3c451f5ea03ba792'
|
|
|
|
'9ea592205023ba861603d74b63cdb73126c56372a366dc4cb7beb379073cbb96')
|
2013-04-27 09:21:50 +00:00
|
|
|
prepare() {
|
2014-05-22 10:34:19 +00:00
|
|
|
cd "$srcdir/xbmc-$pkgver-$_codename"
|
2013-02-02 08:59:56 +00:00
|
|
|
|
2017-02-04 02:21:39 +00:00
|
|
|
# ffmpeg: Automatic switch to software decode for GMC with more than one warp point
|
|
|
|
patch -Np1 -i "$srcdir/0c320b6cdd4fb409be45008e6b9042463d54b742.patch"
|
|
|
|
# fix for files with GMC
|
|
|
|
patch -Np1 -i "$srcdir/4d983105d7fd65b1d92f2ae2602e6e1cdcaddbe0.patch"
|
2016-05-07 09:28:51 +00:00
|
|
|
|
2017-02-04 02:21:39 +00:00
|
|
|
[[ -d kodi-build ]] && rm -rf kodi-build
|
|
|
|
mkdir $srcdir/kodi-build
|
2013-04-27 09:21:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2017-02-04 02:21:39 +00:00
|
|
|
cd "kodi-build"
|
|
|
|
|
|
|
|
# -DCPU=arm1176jzf-s for rpi1
|
|
|
|
# -DCPU=cortex-a7 for rpi2
|
|
|
|
# -DCPU=cortex-a53 for rpi3
|
|
|
|
|
|
|
|
[[ $CARCH == "armv6h" ]] && _CPU=arm1176jzf-s
|
|
|
|
[[ $CARCH == "armv7h" ]] && _CPU=cortex-a7
|
|
|
|
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
|
|
|
-DCMAKE_PREFIX_PATH=/opt/vc \
|
|
|
|
-DCORE_SYSTEM_NAME=rbpi \
|
|
|
|
-DWITH_CPU="$_CPU" \
|
|
|
|
-DENABLE_EVENTCLIENTS=ON \
|
|
|
|
-DENABLE_OPENGL=OFF \
|
|
|
|
-DENABLE_X11=OFF \
|
|
|
|
-DENABLE_VAAPI=OFF \
|
|
|
|
-DENABLE_VDPAU=OFF \
|
|
|
|
-DLIRC_DEVICE=/run/lirc/lircd \
|
|
|
|
../"xbmc-$pkgver-$_codename"/project/cmake
|
2013-02-02 08:59:56 +00:00
|
|
|
|
|
|
|
make
|
2017-02-04 02:21:39 +00:00
|
|
|
make preinstall
|
2013-02-02 08:59:56 +00:00
|
|
|
}
|
|
|
|
|
2015-03-31 03:54:30 +00:00
|
|
|
package_kodi-rbp() {
|
|
|
|
pkgdesc="A software media player and entertainment hub for digital media (Raspberry Pi)"
|
|
|
|
|
|
|
|
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'
|
2017-02-04 02:21:39 +00:00
|
|
|
'libmpeg2' 'libmad' 'libmodplug' 'jasper' 'rtmpdump' 'xorg-xdpyinfo' 'libbluray'
|
|
|
|
'avahi' 'bluez-libs' 'tinyxml' 'raspberrypi-firmware' 'libpulse'
|
|
|
|
'libplist' 'swig' 'taglib' 'libxslt' 'libcrossguid-git')
|
2015-03-31 03:54:30 +00:00
|
|
|
|
|
|
|
optdepends=(
|
2017-02-04 02:21:39 +00:00
|
|
|
'afpfs-ng: Apple airplay and AFP share support'
|
|
|
|
'libcec-rpi: Pulse-Eight USB-CEC adapter support'
|
|
|
|
'libnfs: NFS shares support'
|
2015-03-31 03:54:30 +00:00
|
|
|
'lirc: remote controller support'
|
2017-02-04 02:21:39 +00:00
|
|
|
'lsb-release: log distro information in crashlog'
|
2015-03-31 03:54:30 +00:00
|
|
|
'polkit: permissions for automounting external drives and power management functionality'
|
2017-02-04 02:21:39 +00:00
|
|
|
'shairplay: limited Apple airplay support'
|
2015-03-31 03:54:30 +00:00
|
|
|
'unrar: access compressed files without unpacking them'
|
2017-02-04 02:21:39 +00:00
|
|
|
'unzip: access compressed files without unpacking them'
|
|
|
|
'upower: used to trigger power management functionality')
|
2015-03-31 03:54:30 +00:00
|
|
|
|
2017-02-04 02:21:39 +00:00
|
|
|
install='kodi.install'
|
2015-03-31 03:54:30 +00:00
|
|
|
provides=('xbmc' 'kodi')
|
2016-05-05 07:05:05 +00:00
|
|
|
conflicts=('xbmc' 'kodi' 'arm-mem-git' 'shairplay-git')
|
2017-02-04 02:21:39 +00:00
|
|
|
replaces=('xbmc-rbp-git')
|
2015-03-31 03:54:30 +00:00
|
|
|
|
2017-02-04 02:21:39 +00:00
|
|
|
_components=('kodi' 'kodi-bin')
|
2013-02-02 08:59:56 +00:00
|
|
|
|
2017-02-04 02:21:39 +00:00
|
|
|
cd kodi-build
|
|
|
|
# install eventclients
|
|
|
|
for _cmp in ${_components[@]}; do
|
|
|
|
DESTDIR="$pkgdir" /usr/bin/cmake \
|
|
|
|
-DCMAKE_INSTALL_COMPONENT="$_cmp" \
|
|
|
|
-P cmake_install.cmake
|
|
|
|
done
|
2013-02-02 08:59:56 +00:00
|
|
|
|
|
|
|
# Licenses
|
2017-02-04 02:21:39 +00:00
|
|
|
install -dm755 ${pkgdir}/usr/share/licenses/${pkgname}
|
2013-02-02 08:59:56 +00:00
|
|
|
for licensef in LICENSE.GPL copying.txt; do
|
2017-02-04 02:21:39 +00:00
|
|
|
mv ${pkgdir}/usr/share/doc/kodi/${licensef} \
|
|
|
|
${pkgdir}/usr/share/licenses/${pkgname}
|
2013-02-02 08:59:56 +00:00
|
|
|
done
|
|
|
|
|
2017-02-04 02:21:39 +00:00
|
|
|
# python2 is being used
|
|
|
|
cd "$pkgdir"
|
|
|
|
grep -lR '#!.*python' * | while read file; do sed -s 's/\(#!.*python\)/\12/g' -i "$file"; done
|
|
|
|
|
|
|
|
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"
|
|
|
|
chmod 0700 "$pkgdir/usr/share/polkit-1/rules.d/"
|
|
|
|
|
|
|
|
# fix permissions necessary for accelerated video playback
|
|
|
|
install -Dm0644 "$srcdir/99-kodi.rules" "$pkgdir/etc/udev/rules.d/99-kodi.rules"
|
2013-02-02 08:59:56 +00:00
|
|
|
}
|
2015-03-31 03:54:30 +00:00
|
|
|
|
|
|
|
package_kodi-rbp-eventclients() {
|
|
|
|
pkgdesc="Kodi Event Clients (Raspberry Pi)"
|
|
|
|
provides=('kodi-eventclients')
|
|
|
|
conflicts=('kodi-eventclients')
|
|
|
|
depends=('cwiid')
|
|
|
|
|
2017-02-04 02:21:39 +00:00
|
|
|
_components=(
|
|
|
|
'kodi-eventclients-common'
|
|
|
|
'kodi-eventclients-ps3'
|
|
|
|
'kodi-eventclients-wiiremote'
|
|
|
|
'kodi-eventclients-xbmc-send'
|
|
|
|
)
|
|
|
|
|
|
|
|
cd kodi-build
|
|
|
|
# install eventclients
|
|
|
|
for _cmp in ${_components[@]}; do
|
|
|
|
DESTDIR="$pkgdir" /usr/bin/cmake \
|
|
|
|
-DCMAKE_INSTALL_COMPONENT="$_cmp" \
|
|
|
|
-P cmake_install.cmake
|
|
|
|
done
|
2015-03-31 03:54:30 +00:00
|
|
|
|
2017-02-04 02:21:39 +00:00
|
|
|
# python2 is being used
|
|
|
|
cd "$pkgdir"
|
|
|
|
grep -lR '#!.*python' * | while read file; do sed -s 's/\(#!.*python\)/\12/g' -i "$file"; done
|
2015-03-31 03:54:30 +00:00
|
|
|
}
|