mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
147 lines
5 KiB
Bash
147 lines
5 KiB
Bash
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
|
|
# Contributor: Brad Fanella <bradfanella@archlinux.us>
|
|
# Contributor: [vEX] <niechift.dot.vex.at.gmail.dot.com>
|
|
# Contributor: Zeqadious <zeqadious.at.gmail.dot.com>
|
|
# Contributor: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Contributor: Maxime Gauduin <alucryd@gmail.com>
|
|
|
|
# Prevent autobuild till GCC5.2 issues get resolved.
|
|
noautobuild=1
|
|
|
|
buildarch=4
|
|
|
|
_prefix=/usr
|
|
|
|
pkgbase=kodi-c1
|
|
pkgname=('kodi-c1' 'kodi-c1-eventclients')
|
|
_commit=e8a3b9d8631b415950faa9919526e738eefe0947
|
|
pkgver=15.2
|
|
pkgrel=1
|
|
arch=('armv7h')
|
|
url="http://kodi.tv"
|
|
license=('GPL2')
|
|
makedepends=(
|
|
'afpfs-ng' 'bluez-libs' 'boost' 'cmake' 'curl' 'cwiid' 'doxygen' 'git' 'glew'
|
|
'gperf' 'hicolor-icon-theme' 'jasper' 'java-runtime' 'libaacs' 'libass'
|
|
'libbluray' 'libcdio' 'odroid-c1-libgl-x11' 'libmariadbclient' 'libmicrohttpd'
|
|
'libmodplug' 'libmpeg2' 'libnfs' 'libplist' 'libpulse' 'libssh' 'libva'
|
|
'libxrandr' 'libxslt' 'lzo' 'nasm' 'nss-mdns' 'python2-pillow' 'aml-libs-c1'
|
|
'python2-pybluez' 'python2-simplejson' 'rtmpdump' 'sdl2' 'sdl_image'
|
|
'shairplay' 'smbclient' 'swig' 'taglib' 'tinyxml' 'unzip' 'upower' 'yajl' 'zip'
|
|
)
|
|
source=("https://github.com/Owersun/xbmc/archive/${_commit}.tar.gz"
|
|
"https://github.com/xbmc/xbmc/commit/99ce2fd1f0c872b3854dc3678e111dddfb9bcbd4.patch"
|
|
'kodi_to_15.2_removed_png.patch'
|
|
"https://raw.githubusercontent.com/xbmc/xbmc/Isengard/media/Splash.png")
|
|
sha256sums=('49dfb68a4264b68ce92c3f2a35b036ea1803b42be72f7044faa551e6564a9f5c'
|
|
'9065e6ae2bef4ba0fa9ef4fe3b57d978aef69fd1bd96eea722da80f3522f2c0e'
|
|
'f6b251f1be432a6328b3869c666ec4fb39165f34544bd7c36fde99abc6f8a993'
|
|
'37eea35a0ccb0cb509d09c96b059741a9e3c87f222a69c58ae00c604cc520141')
|
|
prepare() {
|
|
cd xbmc-${_commit}
|
|
|
|
# Bring kodi up to 15.2 release
|
|
patch -Np1 -i ${srcdir}/99ce2fd1f0c872b3854dc3678e111dddfb9bcbd4.patch
|
|
patch -Np1 -i ${srcdir}/kodi_to_15.2_removed_png.patch
|
|
cp -r ${srcdir}/Splash.png ./media/
|
|
|
|
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
|
|
}
|
|
|
|
build() {
|
|
cd xbmc-${_commit}
|
|
|
|
CFLAGS=`echo $CFLAGS | sed -e 's/vfpv3-d16/neon/'` && CXXFLAGS="$CFLAGS"
|
|
LDFLAGS+=" -L/usr/lib/mali-egl -L/usr/lib/aml_libs"
|
|
|
|
# Bootstrapping
|
|
MAKEFLAGS=-j1 ./bootstrap
|
|
|
|
#./configure --help
|
|
#return 1
|
|
|
|
# Configuring XBMC
|
|
export PYTHON_VERSION=2 # external python v2
|
|
./configure --prefix=$_prefix \
|
|
gl_cv_func_gettimeofday_clobber=no ac_cv_lib_bluetooth_hci_devid=no \
|
|
--disable-debug \
|
|
--enable-optimizations \
|
|
--enable-libbluray \
|
|
--disable-texturepacker \
|
|
--enable-external-libraries \
|
|
--with-lirc-device=/run/lirc/lircd \
|
|
--disable-vaapi \
|
|
--disable-vdpau \
|
|
--disable-static --enable-shared \
|
|
--disable-rsxs \
|
|
--enable-codec=amcodec
|
|
|
|
# Now (finally) build
|
|
make
|
|
}
|
|
|
|
package_kodi-c1() {
|
|
pkgdesc="A software media player and entertainment hub for digital media (ODROID-C1)"
|
|
|
|
# depends expected for kodi plugins:
|
|
# 'python2-pillow' 'python2-pybluez' 'python2-simplejson'
|
|
# depends expeced in FEH.py
|
|
# 'mesa-demos' 'xorg-xdpyinfo'
|
|
depends=(
|
|
'python2-pillow' 'python2-pybluez' 'python2-simplejson'
|
|
'mesa-demos' 'xorg-xdpyinfo'
|
|
'bluez-libs' 'fribidi' 'glew' 'hicolor-icon-theme' 'libcdio'
|
|
'libjpeg-turbo' 'libmariadbclient' 'libmicrohttpd' 'libpulse' 'libssh'
|
|
'libva' 'libxrandr' 'libxslt' 'lzo' 'sdl2' 'smbclient' 'taglib' 'tinyxml'
|
|
'yajl' 'odroid-c1-libgl' 'aml-libs-c1'
|
|
)
|
|
optdepends=(
|
|
'afpfs-ng: Apple shares support'
|
|
'bluez: Blutooth support'
|
|
'libnfs: NFS shares support'
|
|
'libplist: AirPlay support'
|
|
'lirc: Remote controller support'
|
|
'pulseaudio: PulseAudio support'
|
|
'shairplay: AirPlay support'
|
|
'udisks: Automount external drives'
|
|
'unrar: Archives support'
|
|
'unzip: Archives support'
|
|
'upower: Display battery level'
|
|
'lsb-release: log distro information in crashlog'
|
|
)
|
|
install="kodi.install"
|
|
provides=('xbmc' 'kodi')
|
|
conflicts=('xbmc' 'kodi')
|
|
replaces=('xbmc')
|
|
|
|
cd xbmc-${_commit}
|
|
# Running make install
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
# Licenses
|
|
install -dm755 ${pkgdir}${_prefix}/share/licenses/${pkgname}
|
|
for licensef in LICENSE.GPL copying.txt; do
|
|
mv ${pkgdir}${_prefix}/share/doc/kodi/${licensef} \
|
|
${pkgdir}${_prefix}/share/licenses/${pkgname}
|
|
done
|
|
}
|
|
|
|
package_kodi-c1-eventclients() {
|
|
pkgdesc="Kodi Event Clients (ODROID-C1)"
|
|
provides=('kodi-eventclients')
|
|
conflicts=('kodi-eventclients')
|
|
depends=('cwiid')
|
|
|
|
cd ${srcdir}/xbmc-${_commit}
|
|
|
|
make DESTDIR="$pkgdir" eventclients WII_EXTRA_OPTS=-DCWIID_OLD
|
|
|
|
install -dm755 "$pkgdir/usr/lib/python2.7/$pkgbase"
|
|
mv "$pkgdir/kodi"/* "$pkgdir/usr/lib/python2.7/$pkgbase"
|
|
rmdir "$pkgdir/kodi"
|
|
}
|