30 lines
868 B
Text
30 lines
868 B
Text
# Template file for 'omxplayer'
|
|
_githash=6ee9a0a548
|
|
|
|
pkgname=omxplayer
|
|
version=20140929
|
|
revision=1
|
|
short_desc="Commandline OMX player for the Raspberry Pi (git ${_githash})"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-2"
|
|
homepage="https://github.com/popcornmix/omxplayer"
|
|
|
|
# XXX only rpi
|
|
only_for_archs="armv6l"
|
|
build_style=gnu-makefile
|
|
make_build_args="XBPS_CROSS_BASE=$XBPS_CROSS_BASE"
|
|
hostmakedepends="pkg-config git"
|
|
makedepends="rpi-firmware>=20130913 pcre-devel boost-devel freetype-devel ffmpeg-devel>=2.4 dbus-devel"
|
|
depends="rpi-firmware>=20130913 freefont-ttf"
|
|
|
|
do_fetch() {
|
|
local url="git://github.com/popcornmix/omxplayer.git"
|
|
git clone $url ${pkgname}-${version}
|
|
cd ${pkgname}-${version}
|
|
git checkout ${_githash}
|
|
}
|
|
|
|
pre_build() {
|
|
sed -e 's,/usr/share/fonts/truetype/freefont,/usr/share/fonts/TTF,g' -i omxplayer.cpp
|
|
mkdir -p /opt/vc/lib
|
|
}
|