mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-09 00:17:31 +00:00
aur/xbmc-rbp-git revert to pre-4.1. Fixes versioning and huge bandwidth waste (63MB vs >1000MB)
This commit is contained in:
parent
629979735f
commit
b040261c0a
1 changed files with 26 additions and 17 deletions
|
@ -1,24 +1,17 @@
|
|||
|
||||
# Contributor tomasgroth at yahoo.dk
|
||||
# Contributor WarheadsSE <max@warheads.net>
|
||||
_gitname="xbmc"
|
||||
pkgname=xbmc-rbp-git
|
||||
pkgver=13.292.gbc074b4
|
||||
#xbmc Gotham is version 13
|
||||
_cycle_version=13
|
||||
pkgver() {
|
||||
cd "$srcdir/$_gitname"
|
||||
git describe --tags |sed "s/[^-]*-/$_cycle_version./;s/-/./g"
|
||||
}
|
||||
epoch=1
|
||||
pkgrel=1
|
||||
|
||||
buildarch=16
|
||||
|
||||
pkgname=xbmc-rbp-git
|
||||
pkgver=13.20130611
|
||||
pkgrel=1
|
||||
pkgdesc="A software media player and entertainment hub for digital media for the Raspberry Pi"
|
||||
arch=('armv6h')
|
||||
url="http://xbmc.org"
|
||||
license=('GPL' 'custom')
|
||||
depends=('hicolor-icon-theme' 'fribidi' 'lzo2' 'smbclient' 'libtiff' 'libva' 'libpng' 'libcdio' 'yajl' 'libmariadbclient' 'libjpeg-turbo' 'libsamplerate' 'libssh' 'libmicrohttpd' 'sdl_image' 'python2' 'libass' 'libmpeg2' 'libmad' 'libmodplug' 'jasper' 'rtmpdump' 'unzip' 'xorg-xdpyinfo' 'libbluray' 'libnfs' 'afpfs-ng' 'libshairport' 'avahi' 'bluez-libs' 'tinyxml' 'raspberrypi-firmware' 'libcec-rpi' 'libplist' 'swig' 'taglib')
|
||||
|
||||
makedepends=('boost' 'cmake' 'gperf' 'nasm' 'zip' 'udisks' 'upower' 'git' 'autoconf' 'java-environment')
|
||||
optdepends=(
|
||||
'lirc: remote controller support'
|
||||
|
@ -30,15 +23,31 @@ provides=("xbmc")
|
|||
conflicts=("xbmc")
|
||||
install="xbmc.install"
|
||||
source=('xbmc-ae04d99-321-texturepacker-hostflags-and-rework.patch'
|
||||
'xbmc.service'
|
||||
"git://github.com/xbmc/xbmc.git")
|
||||
'xbmc.service')
|
||||
md5sums=('53483ae33fc0ef680555fc6aa1b27e0c'
|
||||
'76fae229ebc3bcfaab7e7f27e4fb51f5'
|
||||
'SKIP')
|
||||
'76fae229ebc3bcfaab7e7f27e4fb51f5')
|
||||
|
||||
_gitname="xbmc"
|
||||
_gitroot="git://github.com/xbmc"
|
||||
|
||||
_prefix=/usr
|
||||
|
||||
prepare() {
|
||||
cd "${srcdir}"
|
||||
|
||||
|
||||
msg2 "Connecting to GIT server..."
|
||||
|
||||
if [[ -d "${_gitname}" ]]; then
|
||||
cd "${_gitname}" && git pull origin
|
||||
msg2 "The local files are updated."
|
||||
else
|
||||
git clone --depth 1 "${_gitroot}/${_gitname}"
|
||||
fi
|
||||
|
||||
msg2 "GIT checkout done or server timeout."
|
||||
|
||||
|
||||
cd "${srcdir}/${_gitname}"
|
||||
|
||||
# fix lsb_release dependency
|
||||
|
@ -48,7 +57,7 @@ prepare() {
|
|||
find . -name 'configure*' | xargs grep -l AM_CONFIG_HEADER | xargs sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g'
|
||||
|
||||
# Patch to fix TexturePacker build.
|
||||
git apply ${srcdir}/xbmc-ae04d99-321-texturepacker-hostflags-and-rework.patch
|
||||
patch -p1 -i ${srcdir}/xbmc-ae04d99-321-texturepacker-hostflags-and-rework.patch
|
||||
|
||||
|
||||
# fix samba4 libsmbclient.h location
|
||||
|
|
Loading…
Reference in a new issue