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,22 @@
# Generated by mksrcinfo v8
# Sat Dec 10 04:46:33 UTC 2016
pkgbase = libretro-stella-git
pkgdesc = libretro implementation of Stella. (Atari 2600)
pkgver = 161.1207fe7
pkgrel = 1
url = https://github.com/libretro/stella-libretro
arch = i686
arch = x86_64
arch = arm
arch = armv6h
arch = armv7h
groups = libretro
license = GPL2
makedepends = git
source = git+https://github.com/libretro/stella-libretro.git
source = https://raw.github.com/libretro/libretro-super/master/dist/info/stella_libretro.info
sha256sums = SKIP
sha256sums = SKIP
pkgname = libretro-stella-git

View File

@@ -0,0 +1,33 @@
# Maintainer: Oliver Jaksch <arch-aur@com-in.de>
pkgname=libretro-stella-git
pkgver=161.1207fe7
pkgrel=1
pkgdesc="libretro implementation of Stella. (Atari 2600)"
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h')
url="https://github.com/libretro/stella-libretro"
license=('GPL2')
groups=('libretro')
makedepends=('git')
_libname=stella_libretro
_gitname=stella-libretro
source=("git+https://github.com/libretro/${_gitname}.git"
"https://raw.github.com/libretro/libretro-super/master/dist/info/${_libname}.info")
sha256sums=('SKIP'
'SKIP')
pkgver() {
cd "${_gitname}"
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
build() {
cd "${_gitname}"
make
}
package() {
install -Dm644 "${_gitname}/${_libname}.so" "${pkgdir}/usr/lib/libretro/${_libname}.so"
install -Dm644 "${_libname}.info" "${pkgdir}/usr/share/libretro/info/${_libname}.info"
}