2014-08-10 22:08:37 +00:00
|
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# Contributor: Huulivoide <gmail.com: jesse.jaara>
|
|
|
|
# Contributor: Jonathan Hudson <daria.co.uk: jh+arch>
|
2014-01-31 03:41:22 +00:00
|
|
|
|
2015-02-05 00:27:08 +00:00
|
|
|
buildarch=20
|
2013-11-16 19:01:58 +00:00
|
|
|
|
2013-06-23 17:35:56 +00:00
|
|
|
pkgname=omxplayer-git
|
2015-03-14 01:07:56 +00:00
|
|
|
pkgver=413.4a91dd8
|
2015-03-04 00:41:19 +00:00
|
|
|
pkgrel=1
|
2013-06-23 17:35:56 +00:00
|
|
|
pkgdesc="omxplayer is a command line media player for the RaspberryPi"
|
2015-03-14 01:08:17 +00:00
|
|
|
arch=('armv6h' 'armv7h')
|
2013-08-13 01:17:55 +00:00
|
|
|
url="https://github.com/popcornmix/omxplayer"
|
2013-06-23 17:35:56 +00:00
|
|
|
license=(GPL2)
|
2014-01-31 03:41:22 +00:00
|
|
|
depends=('ffmpeg' 'raspberrypi-firmware-tools' 'fbset')
|
|
|
|
makedepends=('git' 'boost')
|
|
|
|
optdepends=('ttf-freefont')
|
2013-06-23 17:35:56 +00:00
|
|
|
provides=(omxplayer)
|
2014-01-31 03:41:22 +00:00
|
|
|
conflicts=('omxplayer' 'omxplayer-bin')
|
2014-08-10 22:08:37 +00:00
|
|
|
source=('git://github.com/popcornmix/omxplayer.git'
|
2015-01-13 04:04:19 +00:00
|
|
|
'0001-alarm-fixes.patch')
|
2014-08-10 22:08:37 +00:00
|
|
|
md5sums=('SKIP'
|
2015-02-28 01:59:53 +00:00
|
|
|
'13895e966d734d927bec43376a1c1de8')
|
2013-08-13 01:17:55 +00:00
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd omxplayer
|
|
|
|
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
|
|
|
|
}
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "${srcdir}/omxplayer"
|
2013-06-23 17:35:56 +00:00
|
|
|
|
2014-09-24 14:53:51 +00:00
|
|
|
git apply ../0001-alarm-fixes.patch
|
2013-08-13 01:17:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/omxplayer"
|
|
|
|
|
2013-06-23 17:35:56 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2013-08-13 01:17:55 +00:00
|
|
|
cd "${srcdir}/omxplayer"
|
|
|
|
|
|
|
|
make DESTDIR="${pkgdir}" install
|
2013-06-23 17:35:56 +00:00
|
|
|
}
|