PKGBUILDs/alarm/kodi-rbp/PKGBUILD

204 lines
7.2 KiB
Bash
Raw Normal View History

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 >
# 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>
2015-02-05 00:13:27 +00:00
buildarch=20
2015-03-31 03:54:30 +00:00
_prefix=/usr
pkgbase=kodi-rbp
2017-02-05 02:59:18 +00:00
pkgname=('kodi-rbp' 'kodi-rbp-eventclients' 'kodi-rbp-tools-texturepacker' 'kodi-rbp-dev')
2017-02-04 02:21:39 +00:00
_codename=Krypton
2017-10-24 00:38:44 +00:00
pkgver=17.5
pkgrel=1
2015-02-05 00:13:27 +00:00
arch=('armv6h' 'armv7h')
url="http://kodi.tv"
2015-03-31 03:54:30 +00:00
license=('GPL2')
2017-09-30 00:20:21 +00:00
makedepends=('afpfs-ng' 'autoconf' 'avahi' 'bluez-libs' 'boost' 'cmake' 'cwiid' 'dcadec'
'doxygen' 'ffmpeg' 'fribidi' 'glew' 'gperf' 'hicolor-icon-theme' 'jasper' 'java-environment'
'libaacs' 'libass' 'libbluray' 'libcdio' 'libcec-rpi' 'libjpeg-turbo' 'libmad'
'libmariadbclient' 'libmicrohttpd' 'libmodplug' 'libmpeg2' 'libnfs' 'libplist' 'libpng'
'libpulse' 'libsamplerate' 'libssh' 'libtiff' 'libva' 'libxslt' 'lzo' 'nasm' 'python2'
'python2-pillow' 'python2-pybluez' 'python2-simplejson' 'raspberrypi-firmware' 'rtmpdump'
'sdl_image' 'shairplay' 'smbclient' 'swig' 'taglib' 'tinyxml' 'unzip' 'upower' 'xorg-xdpyinfo'
'yajl' 'zip')
source=("https://github.com/xbmc/xbmc/archive/$pkgver-$_codename.tar.gz"
2017-09-30 00:20:21 +00:00
'kodi.service'
'99-kodi.rules'
'https://github.com/popcornmix/xbmc/commit/0c320b6cdd4fb409be45008e6b9042463d54b742.patch'
'https://github.com/popcornmix/xbmc/commit/4d983105d7fd65b1d92f2ae2602e6e1cdcaddbe0.patch'
'polkit.rules'
'hifiberry_digi.patch'
'fix-python-lib-path.patch')
2017-10-24 00:38:44 +00:00
sha256sums=('84c64acc270b9e845a67fbbe481ae5ddeb9b4568d76e42f2d5f9160fe0ce2de2'
2017-02-04 02:21:39 +00:00
'5235068d5800d69f0287087815990e7fe8d6572733d60c8800546d35f608e87f'
'b31570f95654434b01fd8531612fbb6be77cbc1c519dd60f92feae26eb160f3d'
2017-05-25 01:57:09 +00:00
'6f23df9cf214502f0a446edf07b18ce1855e549cabb1cd94ac9180770ba48ee4'
'82057eccc4cadbd568dda76103dcc667754194e926ede78e43d70b3a17bbb5e5'
'9ea592205023ba861603d74b63cdb73126c56372a366dc4cb7beb379073cbb96'
2017-05-28 18:42:21 +00:00
'0b9d951911a8576c26dec8a31f394282677e48afff49b9579448121d27b8509e'
'1c07c9fdd8e2958262cf917e4266c4933fcd06529c111e3cb0cbaaa05c934033')
2017-09-30 00:20:21 +00:00
2013-04-27 09:21:50 +00:00
prepare() {
cd "$srcdir/xbmc-$pkgver-$_codename"
2017-08-25 01:09:46 +00:00
# python2 path fix
patch -p1 -i "$srcdir/fix-python-lib-path.patch"
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"
# fix for lack of passthrough audio with hifiberry-digi+ card
patch -Np1 -i "$srcdir/hifiberry_digi.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-05-28 18:42:21 +00:00
cd kodi-build
2017-02-04 02:21:39 +00:00
# -DCPU=arm1176jzf-s for rpi1
# -DCPU=cortex-a7 for rpi2
# -DCPU=cortex-a53 for rpi3
2017-08-25 01:09:46 +00:00
2017-06-25 14:48:06 +00:00
[[ $CARCH == "armv6h" ]] && _CPU=arm1176jzf-s && LDFLAGS+=" -latomic"
2017-02-04 02:21:39 +00:00
[[ $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 \
2017-08-25 01:09:46 +00:00
-DENABLE_INTERNAL_CROSSGUID=ON \
2017-09-28 18:04:33 +00:00
-DENABLE_INTERNAL_FFMPEG="no" \
-DWITH_FFMPEG="yes" \
2017-02-04 02:21:39 +00:00
-DLIRC_DEVICE=/run/lirc/lircd \
../"xbmc-$pkgver-$_codename"/project/cmake
make
2017-02-04 02:21:39 +00:00
make preinstall
}
2015-03-31 03:54:30 +00:00
package_kodi-rbp() {
pkgdesc="A software media player and entertainment hub for digital media (Raspberry Pi)"
2017-09-30 00:20:21 +00:00
depends=('ffmpeg' 'glew' 'jasper' 'libbluray' 'libcdio' 'libmad' 'libmariadbclient' 'libmicrohttpd'
'libmpeg2' 'libplist' 'libxslt' 'python2-pillow' 'python2-pybluez' 'python2-simplejson'
'raspberrypi-firmware' 'rtmpdump' 'sdl_image' 'smbclient' 'swig' 'taglib' 'tinyxml' 'xorg-xdpyinfo' 'yajl')
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')
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')
_components=('kodi' 'kodi-bin')
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
# Licenses
2017-02-05 02:59:18 +00:00
install -dm755 "$pkgdir/usr/share/licenses/$pkgname"
for licensef in LICENSE.GPL copying.txt; do
2017-02-05 02:59:18 +00:00
mv "$pkgdir/usr/share/doc/kodi/$licensef" \
"$pkgdir/usr/share/licenses/$pkgname"
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"
2017-05-25 01:57:09 +00:00
chmod 0750 "$pkgdir/usr/share/polkit-1/rules.d/"
2017-02-04 02:21:39 +00:00
# fix permissions necessary for accelerated video playback
install -Dm0644 "$srcdir/99-kodi.rules" "$pkgdir/etc/udev/rules.d/99-kodi.rules"
}
2015-03-31 03:54:30 +00:00
package_kodi-rbp-eventclients() {
2017-02-05 02:59:18 +00:00
pkgdesc="Kodi event clients (Raspberry Pi)"
2015-03-31 03:54:30 +00:00
provides=('kodi-eventclients')
conflicts=('kodi-eventclients')
depends=('cwiid')
2017-02-05 02:59:18 +00:00
_components=('kodi-eventclients-common'
2017-02-04 02:21:39 +00:00
'kodi-eventclients-ps3'
'kodi-eventclients-wiiremote'
2017-02-05 02:59:18 +00:00
'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
# python2 is being used
cd "$pkgdir"
grep -lR '#!.*python' * | while read file; do sed -s 's/\(#!.*python\)/\12/g' -i "$file"; done
}
package_kodi-rbp-tools-texturepacker() {
pkgdesc="Kodi texturepacker tool (Raspberry Pi)"
depends=('libpng' 'giflib' 'libjpeg-turbo' 'lzo')
_components=('kodi-tools-texturepacker')
cd kodi-build
# install eventclients
for _cmp in ${_components[@]}; do
DESTDIR="$pkgdir" /usr/bin/cmake \
-DCMAKE_INSTALL_COMPONENT="$_cmp" \
-P cmake_install.cmake
done
}
package_kodi-rbp-dev() {
pkgdesc="Kodi dev files (Raspberry Pi)"
depends=('kodi')
provides=('kodi-dev')
2017-02-05 02:59:18 +00:00
_components=('kodi-addon-dev'
'kodi-audio-dev'
'kodi-eventclients-dev'
'kodi-game-dev'
'kodi-inputstream-dev'
'kodi-peripheral-dev'
'kodi-pvr-dev'
'kodi-screensaver-dev'
'kodi-visualization-dev')
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
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
}