libretro: various cores update (#4301)

* 81_libretro: bumped to version 1.0a:20190917

* atari800_libretro: bumped to version 3.1.0:20190907

* bluemsx_libretro: bumped to version 2.9.0:20190902

* cap32_libretro: bumped to version 4.2.0:20190907

* fmsx_libretro: bumped to version 4.9:20190905

* fuse_libretro: bumped to version 1.1.1:20190729

* hatari_libretro: bumped to version 1.8:20190923

* nekop2_libretro: bumped to version 0.86:20190914

* mrboom_libretro: bumped to version 4.7:20190914

* dosbox_libretro: bumped to version 0.74:20190902

* fceumm_libretro: bumped to version 0.0.1:20190905

* flycast_libretro: bumped to version 0.1:20191016

* freeintv_libretro: bumped to version 20180214:20190905

* gambatte_libretro: bumped to version 0.5.0:20191010

* gearboy_libretro: bumped to version 2.5:20181103

* genesis_plus_gx_libretro: bumped to version 1.7.4:20190916

* gpsp_libretro: bumped to version 0.91:20190914

* gw_libretro: bumped to version 1.6.2:20190816

* handy_libretro: bumped to version 0.95:20190801

* mednafen_gba_libretro: bumped to version 0.9.36:20190911

* mednafen_lynx_libretro: bumped to version 0.9.32:20190911

* mednafen_ngp_libretro: bumped to version 0.9.36.1:20190911

* mednafen_pce_fast_libretro: bumped to version 0.9.38.7:20190911

* mednafen_pcfx_libretro: bumped to version 0.9.33.3:20190911

* mednafen_supergrafx_libretro: bumped to version 0.9.38.7:20190911

* mednafen_vb_libretro: bumped to version 0.9.36.1:20190912

* mednafen_wswan_libretro: bumped to version 0.9.35.1:20190914

* meteor_libretro: bumped to version 1.4:20190912

* o2em_libretro: bumped to version 1.18:20190914

* pcsx_rearmed_libretro: bumped to version r22:20191007

* picodrive_libretro: bumped to version 1.92:20190905

* vba_next_libretro: bumped to version 1.0.2:20190924

* vecx_libretro: bumped to version 1.2:20190817

* virtualjaguar_libretro: bumped to version 2.1.2:20190625

* 3dengine_libretro: bumped to version 1.0:20180406

* reminiscence_libretro: bumped to version 0.3.6:20190914

* scummvm_libretro: bumped to version 2.0.0:20191013

* tyrquake_libretro: bumped to version 0.62:20191013

* craft_libretro: bumped to version 1.0:20190626

* 2048_libretro: bumped to version 1.0:20190902

* gme_libretro: bumped to version 0.5.2:20190905
This commit is contained in:
kwyxz
2019-10-16 22:43:48 -07:00
committed by Jérôme Duval
parent 4a2d12692f
commit 39be1620be
41 changed files with 82 additions and 82 deletions

View File

@@ -0,0 +1,58 @@
SUMMARY="A port of Hatari, an Atari 16/32bit computer emulator"
DESCRIPTION="Hatari is an Atari ST/STE/TT/Falcon emulator. The Atari ST was a \
16/32 bit computer system which was first released by Atari in 1985. Using the \
Motorola 68000 CPU, it was a very popular computer having quite a lot of CPU \
power at that time. Unlike many other Atari ST emulators which try to give you \
a good environment for running GEM applications, Hatari tries to emulate the \
hardware of a ST as close as possible so that it is able to run most of the \
old ST games and demos."
HOMEPAGE="https://hatari.tuxfamily.org/"
COPYRIGHT="2001-2018 Nicolas Pomarède, the Hatari team, the libretro team"
LICENSE="GNU GPL v2"
REVISION="1"
srcGitRev="ec1b59c4b6c7ca7d0d23d60cfe2cb61911b11173"
SOURCE_URI="https://github.com/libretro/hatari/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="4deea8ba40e7ce026db731b511e01bea5caa5a51b3499aa4473405841cbedd67"
SOURCE_FILENAME="hatari-libretro-${portVersion/_/-}-$srcGitRev.tar.gz"
SOURCE_DIR="hatari-$srcGitRev"
ADDITIONAL_FILES="hatari_libretro.info.in"
ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
hatari_libretro$secondaryArchSuffix = $portVersion
addon:hatari_libretro$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
retroarch$secondaryArchSuffix
lib:libz$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libz$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix
cmd:make
"
BUILD()
{
sed -e "s/@DISPLAY_VERSION@/v${portVersion/_/-}/" \
$portDir/additional-files/hatari_libretro.info.in \
> hatari_libretro.info
make -f Makefile.libretro $jobArgs
}
INSTALL()
{
install -m 0755 -d "$docDir"
install -m 0644 -t "$docDir" gpl.txt readme.txt
install -m 0755 -d "$addOnsDir"/libretro
install -m 0644 -t "$addOnsDir"/libretro \
hatari_libretro.info \
hatari_libretro.so
}