Add xboxdrv and various libretro cores

This commit is contained in:
moparisthebest
2017-01-02 18:17:21 -05:00
parent 9dd2ac198d
commit b9b09587bc
23 changed files with 621 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# Generated by mksrcinfo v8
# Tue Nov 22 20:38:49 UTC 2016
pkgbase = libretro-vba-next-git
pkgdesc = libretro implementation of VBA Next. (Game Boy Advance)
pkgver = 479.dbdf841
pkgrel = 1
url = https://github.com/libretro/vba-next
arch = i686
arch = x86_64
arch = arm
arch = armv6h
license = GPL
makedepends = git
source = git+https://github.com/libretro/vba-next.git
source = https://raw.github.com/libretro/libretro-super/master/dist/info/vba_next_libretro.info
md5sums = SKIP
md5sums = SKIP
pkgname = libretro-vba-next-git

View File

@@ -0,0 +1,34 @@
# Maintainer : Johnathan Jenkins <twodopeshaggy@gmail.com>
# Contributor: prettyvanilla <prettyvanilla@posteo.at>
# Contributor: almostalive <almostalive2003 at gmail dot com>
pkgname=libretro-vba-next-git
pkgver=680.4578ca6
pkgrel=1
pkgdesc="libretro implementation of VBA Next. (Game Boy Advance)"
arch=('i686' 'x86_64' 'arm' 'armv6h')
url="https://github.com/libretro/vba-next"
license=('GPL')
makedepends=('git')
_libname=vba_next_libretro
_gitname=vba-next
source=("git+https://github.com/libretro/${_gitname}.git"
"https://raw.github.com/libretro/libretro-super/master/dist/info/${_libname}.info")
md5sums=('SKIP'
'SKIP')
pkgver() {
cd "${_gitname}"
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
build() {
cd "${_gitname}"
make -f Makefile.libretro
}
package() {
install -Dm644 "${_gitname}/${_libname}.so" "${pkgdir}/usr/lib/libretro/${_libname}.so"
install -Dm644 "${_libname}.info" "${pkgdir}/usr/share/libretro/info/${_libname}.info"
}