Date: Tuesday, May 31, 2016 @ 23:17:02 Author: alucryd Revision: 177567
Add the ScummVM libretro core Added: libretro-scummvm/ libretro-scummvm/trunk/ libretro-scummvm/trunk/PKGBUILD ----------+ PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) Added: libretro-scummvm/trunk/PKGBUILD =================================================================== --- libretro-scummvm/trunk/PKGBUILD (rev 0) +++ libretro-scummvm/trunk/PKGBUILD 2016-05-31 21:17:02 UTC (rev 177567) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Maxime Gauduin <alucryd@ærchlinux.org> +# Contributor: Oliver Jaksch <[email protected]> + +pkgname=libretro-scummvm +pkgver=71580 +pkgrel=1 +pkgdesc='ScummVM core' +arch=('i686' 'x86_64') +url='https://github.com/libretro/scummvm' +license=('GPL') +groups=('libretro') +depends=('gcc-libs' 'glibc') +makedepends=('git') +source=('libretro-scummvm::git+https://github.com/libretro/scummvm.git' + 'https://raw.github.com/libretro/libretro-super/master/dist/info/scummvm_libretro.info') +sha256sums=('SKIP' + '7a2bed9546dd67cbc7efa3d7e556758dc4e49cf01a4082f3587acc48e3b9d4bb') + +pkgver() { + cd libretro-scummvm + + git rev-list --count HEAD +} + +build() { + cd libretro-scummvm/backends/platform/libretro/build + + make +} + +package() { + cd libretro-scummvm/backends/platform/libretro/build + + install -dm 755 "${pkgdir}"/usr/{lib/libretro,share/libretro/info} + install -m 644 scummvm_libretro.so "${pkgdir}"/usr/lib/libretro/ + install -m 644 "${srcdir}"/scummvm_libretro.info "${pkgdir}"/usr/share/libretro/info/ +} + +# vim: ts=2 sw=2 et: Property changes on: libretro-scummvm/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
