diff options
author | David Demelier <markand@malikania.fr> | 2020-04-06 10:52:30 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-04-06 22:35:03 +0000 |
commit | 3be1a3be6f98c23249cc28d1d4debadfca3af7f5 (patch) | |
tree | b813d0a241e2ffd45494874dcc2c7b56b1cf52b0 /testing/libretro-gearboy | |
parent | a5a0c8d4558ffe5307decf3199fb5dcb9f7a7794 (diff) | |
download | aports-3be1a3be6f98c23249cc28d1d4debadfca3af7f5.tar.bz2 aports-3be1a3be6f98c23249cc28d1d4debadfca3af7f5.tar.xz |
testing/libretro-gearboy: new aport
https://github.com/libretro/Gearboy
Game Boy / Gameboy Color emulator for libretro
Diffstat (limited to 'testing/libretro-gearboy')
-rw-r--r-- | testing/libretro-gearboy/APKBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/libretro-gearboy/APKBUILD b/testing/libretro-gearboy/APKBUILD new file mode 100644 index 0000000000..e224d5626d --- /dev/null +++ b/testing/libretro-gearboy/APKBUILD @@ -0,0 +1,24 @@ +# Contributor: David Demelier <markand@malikania.fr> +# Maintainer: David Demelier <markand@malikania.fr> +pkgname=libretro-gearboy +pkgver=0_git20181103 +pkgrel=0 +_commit="368521ef59f3a0e600346ba22041b05331188275" +pkgdesc="Game Boy / Gameboy Color emulator for libretro" +url="https://github.com/libretro/Gearboy" +arch="all" +license="GPL-3.0-only" +source="$pkgname-$_commit.tar.gz::https://github.com/libretro/Gearboy/archive/$_commit.tar.gz" +builddir="$srcdir/Gearboy-$_commit" +options="!check" # No tests + +build() { + make -C platforms/libretro +} + +package() { + install -Dm644 platforms/libretro/gearboy_libretro.so \ + "$pkgdir"/usr/lib/libretro/gearboy_libretro.so +} + +sha512sums="df67e3002aa87b3ea31583842b5c56b11aea48be0c662602b31fd9ea789e510afef4b01e72de54dcfe56720a3d86ebef66f2143f7c309eeb53506e2101b87589 libretro-gearboy-368521ef59f3a0e600346ba22041b05331188275.tar.gz" |