2014-02-19 15:18:13 +00:00
|
|
|
# Contributor tomasgroth at yahoo.dk
|
|
|
|
# Contributor WarheadsSE <max@warheads.net>
|
|
|
|
# Maintainer CruX <CruX@project-insanity.org>
|
|
|
|
# Contributor: pepedog at archlinuxarm dot com
|
|
|
|
|
|
|
|
buildarch=4
|
|
|
|
|
|
|
|
pkgname=xbmc-imx-git
|
2014-09-22 09:31:02 +00:00
|
|
|
pkgver=13.20140922
|
2014-07-24 07:42:34 +00:00
|
|
|
pkgrel=1
|
2014-03-24 15:41:25 +00:00
|
|
|
pkgdesc="A software media player and entertainment hub for digital media for select imx6 systems"
|
2014-02-19 15:18:13 +00:00
|
|
|
arch=('armv7h')
|
|
|
|
url="http://xbmc.org"
|
|
|
|
license=('GPL' 'custom')
|
2014-04-11 17:48:01 +00:00
|
|
|
depends=('fribidi' 'lzo2' 'smbclient' 'libtiff' 'libpng' 'libcdio' 'yajl' 'libmariadbclient' 'libjpeg-turbo' 'libsamplerate' 'libssh' 'libmicrohttpd' 'sdl_image' 'python2' 'libass' 'libmpeg2' 'libmad' 'libmodplug' 'jasper' 'rtmpdump' 'unzip' 'libbluray' 'libnfs' 'afpfs-ng' 'libshairport' 'avahi' 'bluez-libs' 'tinyxml' 'libplist' 'swig' 'taglib' 'libxslt' 'libfslvpuwrap' 'gpu-viv-bin-mx6q-fb' 'libcec-imx6' 'firmware-imx')
|
2014-04-29 22:55:15 +00:00
|
|
|
makedepends=('boost' 'cmake' 'gperf' 'nasm' 'zip' 'udisks' 'git' 'autoconf' 'java-runtime-headless' 'linux-headers-imx6-fsl')
|
2014-02-19 15:18:13 +00:00
|
|
|
optdepends=(
|
|
|
|
'lirc: remote controller support'
|
|
|
|
'udisks: automount external drives'
|
|
|
|
'unrar: access compressed files without unpacking them'
|
|
|
|
)
|
|
|
|
provides=("xbmc")
|
|
|
|
conflicts=("xbmc")
|
|
|
|
install="xbmc.install"
|
2014-03-24 15:41:25 +00:00
|
|
|
source=('xbmc.service'
|
2014-04-07 18:54:39 +00:00
|
|
|
'runxbmc'
|
2014-04-29 22:55:15 +00:00
|
|
|
'xbmc.conf'
|
2014-08-23 12:08:40 +00:00
|
|
|
'10-xbmc.rules'
|
|
|
|
'imx-spdif.conf'
|
|
|
|
'imx-hdmi-soc.conf')
|
|
|
|
|
2014-02-19 15:18:13 +00:00
|
|
|
|
2014-03-24 15:41:25 +00:00
|
|
|
md5sums=('07096dfd530cc432fa6073ee1a32e7f6'
|
2014-04-07 18:54:39 +00:00
|
|
|
'730ac095a89b05c3c2cf2dd93947cb5c'
|
2014-04-29 22:55:15 +00:00
|
|
|
'8fab4cc5cac44a7090ca7e839e326ec8'
|
2014-08-23 12:08:40 +00:00
|
|
|
'c3ad87fc9f278f9530d673be9b1f58f0'
|
|
|
|
'df3edfc7269d4a4d6f94d935c9adb0ac'
|
|
|
|
'90f401e9f255291ec75414056e0d30c0')
|
2014-02-19 15:18:13 +00:00
|
|
|
|
2014-02-27 08:58:06 +00:00
|
|
|
# master branch of xbmc-imx6 organization. Modified by Stephan "wolgar" Rafin, Chris "koying" Browet, Rudi "rudi-warped" Ihle and smallint
|
2014-02-19 15:18:13 +00:00
|
|
|
_gitname="xbmc"
|
2014-02-27 08:58:06 +00:00
|
|
|
_gitroot="git://github.com/xbmc-imx6"
|
|
|
|
_gitbranch="master"
|
2014-02-19 15:18:13 +00:00
|
|
|
|
|
|
|
_prefix=/usr
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "${srcdir}"
|
|
|
|
|
|
|
|
|
|
|
|
msg2 "Connecting to GIT server..."
|
|
|
|
|
|
|
|
if [[ -d "${_gitname}" ]]; then
|
|
|
|
cd "${_gitname}" && git pull origin "$_gitbranch"
|
|
|
|
msg2 "The local files are updated."
|
|
|
|
else
|
|
|
|
git clone --branch ${_gitbranch} --depth 1 "${_gitroot}/${_gitname}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
msg2 "GIT checkout done or server timeout."
|
|
|
|
|
|
|
|
|
|
|
|
cd "${srcdir}/${_gitname}"
|
|
|
|
|
|
|
|
# fix lsb_release dependency
|
|
|
|
sed -i -e 's:/usr/bin/lsb_release -d:cat /etc/arch-release:' xbmc/utils/SystemInfo.cpp
|
|
|
|
|
|
|
|
# fix samba4 libsmbclient.h location
|
|
|
|
sed -e 's/\(#include \)<libsmbclient\.h>/\1<samba-4.0\/libsmbclient\.h>/g' \
|
|
|
|
-i xbmc/filesystem/SmbFile.cpp \
|
|
|
|
-i xbmc/filesystem/SMBDirectory.cpp
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${_gitname}"
|
|
|
|
|
|
|
|
# Bootstrapping XBMC
|
|
|
|
./bootstrap
|
|
|
|
|
|
|
|
# Configuring XBMC
|
|
|
|
export PYTHON_VERSION=2 # external python v2
|
2014-03-29 15:58:59 +00:00
|
|
|
|
|
|
|
INCLUDES="-I/opt/fsl/include"
|
2014-02-19 15:18:13 +00:00
|
|
|
export CFLAGS="-Ofast -mfloat-abi=hard -mfpu=vfpv3-d16 -mtls-dialect=gnu -march=armv7-a -mtune=cortex-a9 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 $INCLUDES -Wl,-rpath,/opt/fsl/lib -L/opt/fsl/lib"
|
|
|
|
export CPPFLAGS="-Ofast -mfloat-abi=hard -mfpu=vfpv3-d16 -mtls-dialect=gnu -march=armv7-a -mtune=cortex-a9 -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 $INCLUDES -Wl,-rpath,/opt/fsl/lib -L/opt/fsl/lib"
|
|
|
|
export CXXFLAGS="-Ofast -mfloat-abi=hard -mfpu=vfpv3-d16 -mtls-dialect=gnu -march=armv7-a -mtune=cortex-a9 -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 $INCLUDES -Wl,-rpath,/opt/fsl/lib -L/opt/fsl/lib"
|
|
|
|
export LDFLAGS="$LDFLAGS -L/opt/fsl/lib"
|
|
|
|
./configure --prefix=$_prefix --exec-prefix=$_prefix \
|
|
|
|
--disable-gl --enable-gles --disable-x11 --disable-sdl \
|
|
|
|
--enable-optimizations --disable-external-libraries --disable-goom --disable-hal \
|
|
|
|
--disable-pulse --disable-vaapi --disable-vdpau --disable-xrandr --enable-airplay \
|
|
|
|
--enable-avahi --enable-libbluray --enable-dvdcss --disable-debug --disable-joystick --disable-mid \
|
|
|
|
--enable-nfs --disable-profiling --disable-projectm --enable-rsxs --enable-rtmp --disable-vaapi \
|
|
|
|
--disable-external-ffmpeg --enable-optical-drive --enable-codec=imxvpu --enable-libcec
|
|
|
|
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${_gitname}"
|
|
|
|
# Running make install
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
|
|
|
|
# run feh with python2
|
|
|
|
sed -i -e 's/python/python2/g' ${pkgdir}${_prefix}/bin/xbmc
|
|
|
|
|
|
|
|
# Remove checks that don't apply to the i.MX6 SoC
|
|
|
|
head -n 171 "${pkgdir}${_prefix}/share/xbmc/FEH.py" > "${pkgdir}${_prefix}/share/xbmc/FEH.py.new"
|
|
|
|
mv "${pkgdir}${_prefix}/share/xbmc/FEH.py.new" "${pkgdir}${_prefix}/share/xbmc/FEH.py"
|
|
|
|
|
|
|
|
# lsb_release fix
|
|
|
|
sed -i -e 's/which lsb_release > \/dev\/null/\[ -f \/etc\/arch-release ]/g' "${pkgdir}${_prefix}/bin/xbmc"
|
|
|
|
sed -i -e "s/lsb_release -a 2> \/dev\/null | sed -e 's\/\^\/ \/'/cat \/etc\/arch-release/g" "${pkgdir}${_prefix}/bin/xbmc"
|
|
|
|
|
|
|
|
# Tools
|
|
|
|
install -D -m 0755 "${srcdir}/${_gitname}/tools/TexturePacker/TexturePacker" "${pkgdir}${_prefix}/share/xbmc/"
|
|
|
|
|
|
|
|
# Licenses
|
|
|
|
install -d -m 0755 "${pkgdir}${_prefix}/share/licenses/${pkgname}"
|
|
|
|
for licensef in LICENSE.GPL copying.txt; do
|
|
|
|
mv "${pkgdir}${_prefix}/share/doc/xbmc/${licensef}" "${pkgdir}${_prefix}/share/licenses/${pkgname}"
|
|
|
|
done
|
|
|
|
|
|
|
|
# systemd stuff
|
|
|
|
install -Dm0644 $srcdir/xbmc.service $pkgdir/usr/lib/systemd/system/xbmc.service
|
2014-03-24 15:41:25 +00:00
|
|
|
install -Dm0755 $srcdir/runxbmc $pkgdir/usr/bin/runxbmc
|
2014-04-07 18:54:39 +00:00
|
|
|
install -Dm0644 $srcdir/xbmc.conf $pkgdir/etc/tmpfiles.d/xbmc.conf
|
2014-04-29 22:55:15 +00:00
|
|
|
install -Dm0644 $srcdir/10-xbmc.rules $pkgdir/etc/polkit-1/rules.d/10-xbmc.rules
|
|
|
|
chmod 700 $pkgdir/etc/polkit-1/rules.d
|
2014-08-23 12:08:40 +00:00
|
|
|
|
|
|
|
# imx6-specific alsa conf
|
|
|
|
install -Dm0644 $srcdir/imx-spdif.conf $pkgdir/usr/share/alsa/cards/imx-spdif.conf
|
|
|
|
install -Dm0644 $srcdir/imx-hdmi-soc.conf $pkgdir/usr/share/alsa/cards/imx-hdmi-soc.conf
|
2014-02-19 15:18:13 +00:00
|
|
|
}
|
|
|
|
|
2014-03-17 15:56:31 +00:00
|
|
|
|