libretro: cores update + info files update (#5159)

* 81_libretro: bumped to version 1.0a:20200613

* atari800_libretro: bumped to version 3.1.0:20200626

* opera_libretro: bumped to version 1.0.0:20200605

* fbneo_libretro: bumped to version 0.2.97.44:20200703

* fceumm_libretro: bumped to version 0.0.1:20200604

* flycast_libretro: bumped to version 0.1:20200703

* gambatte_libretro: bumped to version 0.5.0:20200630

* gpsp_libretro: bumped to version 0.91:20200527

* handy_libretro: bumped to version 0.95:20200625

* mednafen_gba_libretro: bumped to version 0.9.36:20200623

* mednafen_lynx_libretro: bumped to version 0.9.32:20200630

* mednafen_ngp_libretro: bumped to version 0.9.36.1:20200630

* mednafen_pce_fast_libretro: bumped to version 0.9.38.7:20200630

* mednafen_pcfx_libretro: bumped to version 0.9.33.3:20200623

* mednafen_supergrafx_libretro: bumped to version 0.9.38.7:20200623

* mednafen_vb_libretro: bumped to version 0.9.36.1:20200630

* mednafen_wswan_libretro: bumped to version 0.9.35.1:20200701

* mgba_libretro: bumped to version 0.6.1:20200619

* o2em_libretro: bumped to version 1.18:20200609

* pcsx_rearmed_libretro: bumped to version r22:20200701

* picodrive_libretro: bumped to version 1.92:20200607

* vba_next_libretro: bumped to version 1.0.2:20200617

* vecx_libretro: bumped to version 1.2:20200605

* virtualjaguar_libretro: bumped to version 2.1.2:20200521

* yabause_libretro: bumped to version 0.9.15:20200605

* 2048_libretro: bumped to version 1.0:20200520
This commit is contained in:
kwyxz
2020-07-03 23:02:28 -07:00
committed by GitHub
parent 974e832b2f
commit 1108cefd9f
80 changed files with 588 additions and 167 deletions

View File

@@ -0,0 +1,52 @@
SUMMARY="An optimized VisualBoyAdvance-M core for the libretro API"
DESCRIPTION="VBA-Next is a fork of VBA-M, itself a fork of VisualBoyAdvance, \
a popular Nintendo Game Boy Advance emulator. VBA Next was developed by the \
libretro team as an optimized version of VBA-M."
HOMEPAGE="https://github.com/libretro/vba-next"
COPYRIGHT="2001-2018 Forgotten, the VBA-M team , the libretro team"
LICENSE="GNU GPL v2"
REVISION="1"
srcGitRev="850a9afae26da5711b1e1892fe15fa047d8725b0"
SOURCE_URI="https://github.com/libretro/vba-next/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="95015fd68e80d7035d7acfd03420e0d4a4e207e5a8a30529f88d8a961838f424"
SOURCE_FILENAME="libretro-vba-next-${portVersion/_/-}-$srcGitRev.tar.gz"
SOURCE_DIR="vba-next-$srcGitRev"
ADDITIONAL_FILES="vba_next_libretro.info.in"
ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
vba_next_libretro$secondaryArchSuffix = $portVersion
addon:vba_next_libretro$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
retroarch$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix
cmd:make
"
BUILD()
{
sed -e "s/@DISPLAY_VERSION@/v${portVersion/_/-}/" \
$portDir/additional-files/vba_next_libretro.info.in \
> vba_next_libretro.info
make -f Makefile.libretro $jobArgs
}
INSTALL()
{
install -m 0755 -d "$docDir"
install -m 0644 -t "$docDir" LICENSE
install -m 0755 -d "$addOnsDir"/libretro
install -m 0644 -t "$addOnsDir"/libretro \
vba_next_libretro.info \
vba_next_libretro.so
}