blob: 8548bd84a45e839b546643ca7dc799b2f75af851 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Maintainer: Mike Polvere <mic.tjs@gmail.com>
# Contributor: Johnathan Jenkins <twodopeshaggy@gmail.com>
# Contributor: prettyvanilla <prettyvanilla@posteo.at>
# Contributor: almostalive <almostalive2003 at gmail dot com>
pkgname=libretro-genesis-plus-gx-git
pkgver=1459.7856b72
pkgrel=1
pkgdesc='Sega 8/16 bit emu - Genesis Plus (enhanced) port for libretro (Sega MS/GG/MD/CD)'
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h')
_libname=genesis_plus_gx_libretro
_gitname=Genesis-Plus-GX
url="https://github.com/libretro/${_gitname}"
license=('custom')
groups=('libretro')
depends=('glibc')
makedepends=('git')
source=("git+https://github.com/libretro/${_gitname}.git")
sha256sums=('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 "${_gitname}/LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
}
|