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
|
|
|
|
2022-02-07 02:17:01 +00:00
|
|
|
buildarch=4
|
2013-11-16 19:01:58 +00:00
|
|
|
|
2013-06-23 17:35:56 +00:00
|
|
|
pkgname=omxplayer-git
|
2022-03-05 17:16:19 +00:00
|
|
|
pkgver=530.1f1d0cc
|
2023-10-21 17:29:57 +00:00
|
|
|
pkgrel=2
|
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)
|
2023-10-21 17:29:57 +00:00
|
|
|
depends=('ffmpeg4.4' 'raspberrypi-utils' 'fbset')
|
2014-01-31 03:41:22 +00:00
|
|
|
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')
|
2022-03-19 15:53:29 +00:00
|
|
|
source=('git+https://github.com/popcornmix/omxplayer'
|
2019-01-03 13:32:27 +00:00
|
|
|
'0001-alarm-fixes.patch')
|
2014-08-10 22:08:37 +00:00
|
|
|
md5sums=('SKIP'
|
2022-03-05 17:16:19 +00:00
|
|
|
'f0a3f74ace409cf428536d791aa7b500')
|
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
|
|
|
}
|