# vim:set ts=2 sw=2 et: # $Id: PKGBUILD 217763 2017-03-20 20:27:16Z idevolder $ # Maintainer (Arch): Sergej Pupykin # Maintainer (Arch): BlackIkeEagle < ike DOT devolder AT gmail DOT com > # Contributor (Arch): graysky # Contributor (Arch): DonVla # Contributor (Arch): Ulf Winkelvos # Contributor (Arch): Ralf Barth # Contributor (Arch): B & monty - Thanks for your hints :) # Contributor (Arch): marzoul # Contributor (Arch): Sergej Pupykin # Contributor (Arch): Brad Fanella # Contributor (Arch): [vEX] # Contributor (Arch): Zeqadious # Contributor (Arch): Bartłomiej Piotrowski # Contributor (Arch): Maxime Gauduin # Maintainer: André Silva # Contributor: Isaac David # # Original credits go to Edgar Hucek # for his xbmc-vdpau-vdr PKGBUILD at https://archvdr.svn.sourceforge.net/svnroot/archvdr/trunk/archvdr/xbmc-vdpau-vdr/PKGBUILD _pkgbase=kodi-libre pkgbase=kodi pkgname=kodi pkgver=17.1 _codename=Krypton pkgrel=1.parabola1 arch=('i686' 'x86_64' 'armv7h') url="http://kodi.tv" license=('GPL2') # Attention! # Don't repeat libvdpau in makedepends=(), it will break the armv7h build makedepends_i686=('libvdpau') makedepends_x86_64=('libvdpau') makedepends=( 'afpfs-ng' 'bluez-libs' 'boost' 'cmake' 'curl' 'cwiid' 'doxygen' 'glew' 'gperf' 'hicolor-icon-theme' 'jasper' 'java-runtime' 'libaacs' 'libass' 'libbluray' 'libcdio' 'libcec' 'libgl' 'libmariadbclient' 'libmicrohttpd' 'libmodplug' 'libmpeg2' 'libnfs' 'libplist' 'libpulse' 'libssh' 'libva' 'libxrandr' 'libxslt' 'lzo' 'nasm' 'nss-mdns' 'python2-pillow' 'python2-pybluez' 'python2-simplejson' 'rtmpdump' 'shairplay' 'smbclient' 'swig' 'taglib' 'tinyxml' 'unzip' 'upower' 'yajl' 'zip' 'mesa' 'libcrossguid' ) mksource=( "$pkgname-$pkgver-$_codename.tar.gz::https://github.com/xbmc/xbmc/archive/$pkgver-$_codename.tar.gz" ) source=( "https://repo.parabola.nu/other/$_pkgbase/$_pkgbase-$pkgver-$_codename.tar.gz" 'libre.patch' ) mksha512sums=('5093fe7dcdf22e2604ea93696c909028c00a8b0c858e7b25f55dade6c3423b4a68f5a49a8a0dd5238b10f4a7dd5e815a82251949ce7adb8a8f8cf5d58fc7bd41') sha512sums=('3f1e1b9be746915a84d37845a946e61c864d0918c21882350d2aad288d3480fe31901c726a880e7073ffbf09a826f5562be81386a68357e388653a9d3553d05b' '46c712104621d3432ffa07785e7c885394b04e21ddc5cc526520810787e8879878c8e59bb6e6e4c39ddb1097e020864a2d573d0bccce30d546a0c39490299896') mksource() { cd "$srcdir/xbmc-$pkgver-$_codename" msg2 "remove nonfree unRAR utility files from the source" rm -rv lib/UnrarXLib } prepare() { [[ -d kodi-build ]] && rm -rf kodi-build mkdir kodi-build cd "$srcdir/xbmc-$pkgver-$_codename" # patches msg2 "Use addons.xml from Parabola server (without nonfree addons support) and remove nonfree stuff references" rm -v xbmc/filesystem/{Rar{Directory,File,Manager}.{cpp,h},test/TestRarFile.cpp} patch -Np1 -i ../libre.patch } build() { cd kodi-build local configure_options=( -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib -DENABLE_EVENTCLIENTS=ON -DLIRC_DEVICE=/run/lirc/lircd ) if [ "$CARCH" = "armv7h" ]; then configure_options+=(-DENABLE_VAAPI=OFF) fi cmake "${configure_options[@]}" ../"xbmc-$pkgver-$_codename"/project/cmake make make preinstall } # kodi # components: kodi, kodi-bin package_kodi() { pkgdesc="A software media player and entertainment hub for digital media, without nonfree decompression engine for RAR archives and support for nonfree addons" depends=( 'python2-pillow' 'python2-simplejson' 'xorg-xdpyinfo' 'bluez-libs' 'fribidi' 'freetype2' 'glew' 'hicolor-icon-theme' 'libcdio' 'libjpeg-turbo' 'libmariadbclient' 'libmicrohttpd' 'libpulse' 'libssh' 'libva' 'libvdpau' 'libxrandr' 'libxslt' 'lzo' 'smbclient' 'taglib' 'tinyxml' 'yajl' 'mesa' 'desktop-file-utils' ) optdepends=( 'afpfs-ng: Apple shares support' 'bluez: Blutooth support' 'python2-pybluez: Bluetooth support' 'libnfs: NFS shares support' 'libplist: AirPlay support' 'libcec: Pulse-Eight USB-CEC adapter support' 'lirc: Remote controller support' 'lsb-release: log distro information in crashlog' 'pulseaudio: PulseAudio support' 'shairplay: AirPlay support' 'unzip: Archives support' 'upower: Display battery level' ) provides=('xbmc' 'xbmc-lts') conflicts=('xbmc' 'xbmc-lts') replaces=('xbmc' 'xbmc-lts') _components=( 'kodi' 'kodi-bin' ) 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 install -dm755 "$pkgdir/usr/share/licenses/$pkgname" for licensef in LICENSE.GPL copying.txt; do mv "$pkgdir/usr/share/doc/kodi/$licensef" \ "$pkgdir/usr/share/licenses/$pkgname" done # python2 is being used cd "$pkgdir" grep -lR '#!.*python' * | while read file; do sed -s 's/\(#!.*python\)/\12/g' -i "$file"; done }