mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
* 81_libretro: bumped to version 1.0a:20220911 * atari800_libretro: bumped to version 3.1.0:20220726 * bk_libretro: bumped to version 1.0:20220726 * bluemsx_libretro: bumped to version 2.9.0:20220721 * cap32_libretro: bumped to version 4.2.0:20220918 * fmsx_libretro: bumped to version 4.9:20220726 * fuse_libretro: bumped to version 1.1.1:20220726 * hatari_libretro: bumped to version 1.8:20220616 * puae_libretro: bumped to version 2.6.1:20220915 * mrboom_libretro: bumped to version 5.2:20220725 * xrick_libretro: bumped to version 1.0.0.6:20220806 * blastem_libretro: bumped to version 0.6.3:20220726 * desmume_libretro: bumped to version 0.9.11:20220926 * dosbox_pure_libretro: bumped to version 0.13:20220916 * fbneo_libretro: bumped to version 1.0.0.0:20220925 * fceumm_libretro: bumped to version 0.0.1:20220929 * freeintv_libretro: bumped to version 0.0:20220805 * gambatte_libretro: bumped to version 0.5.0:20220822 * gearboy_libretro: bumped to version 3.4:20220927 * gearcoleco_libretro: bumped to version 1.0.0:20220927 * gearsystem_libretro: bumped to version 3.4.1:20220927 * genesis_plus_gx_libretro: bumped to version 1.7.4:20220923 * gpsp_libretro: bumped to version 0.91:20220726 * gw_libretro: bumped to version 1.6.2:20220726 * mame2003_plus_libretro: bumped to version 1.0:20220929 * mednafen_lynx_libretro: bumped to version 0.9.32:20220610 * mednafen_ngp_libretro: bumped to version 0.9.36.1:20220719 * mednafen_pce_fast_libretro: bumped to version 0.9.38.7:20220828 * mednafen_pce_libretro: bumped to version 0.9.38.7:20220721 * mednafen_pcfx_libretro: bumped to version 0.9.33.3:20220721 * mednafen_psx_libretro: bumped to version 0.9.44.1:20220913 * Bump: mednafen_saturn_libretro
52 lines
1.6 KiB
Bash
52 lines
1.6 KiB
Bash
SUMMARY="A port of blastem to the libretro architecture"
|
|
DESCRIPTION="A port of the BlastEm Sega Genesis/Mega Drive emulator to \
|
|
libretro. This emulator is focused on being both extremely accurate and \
|
|
extremely fast. While it is not as mature as Genesis Plus GX, its extreme \
|
|
accuracy makes it capable of running many demos and test ROMs that choke \
|
|
other emulators, including the notoriously complex Titan Overdrive I and II \
|
|
demos."
|
|
HOMEPAGE="https://www.retrodev.com/blastem/"
|
|
COPYRIGHT="2014-2021 Michael Pavone, the libretro team"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
srcGitRev="277e4a62668597d4f59cadda1cbafb844f981d45"
|
|
SOURCE_URI="https://github.com/libretro/blastem/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="1ad8eab6f528612d52f8310237d3e62a501e7449682369baa9eb5d4c73a6b90e"
|
|
SOURCE_FILENAME="blastem-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="blastem-$srcGitRev"
|
|
ADDITIONAL_FILES="blastem_libretro.info.in"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
blastem_libretro$secondaryArchSuffix = $portVersion
|
|
addon:blastem_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/blastem_libretro.info.in > blastem_libretro.info
|
|
make $jobArgs -f Makefile.libretro
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
install -m 0755 -d "$addOnsDir"/libretro
|
|
install -m 0644 -t "$addOnsDir"/libretro blastem_libretro.so blastem_libretro.info
|
|
}
|