mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 15:08:57 +02:00
* 81_libretro: bumped to version 1.0a:20231101 * atari800_libretro: bumped to version 3.1.0:20231114 * bluemsx_libretro: bumped to version 2.9.0:20231110 * cap32_libretro: bumped to version 4.2.0:20240204 * fmsx_libretro: bumped to version 4.9:20240208 * hatari_libretro: bumped to version 1.8:20230929 * puae_libretro: bumped to version 2.6.1:20240203 * xrick_libretro: bumped to version 1.0.0.6:20231101 * bsnes_libretro: bumped to version 115.1:20231116 * desmume_libretro: bumped to version 0.9.11:20240111 * dosbox_pure_libretro: bumped to version 0.13:20231229 * fbneo_libretro: bumped to version 1.0.0.0:20240208 * fceumm_libretro: bumped to version 0.0.1:20240125 * gambatte_libretro: bumped to version 0.5.0:20240202 * gearboy_libretro: bumped to version 3.4:20240201 * gearcoleco_libretro: bumped to version 1.0.0:20240201 * gearsystem_libretro: bumped to version 3.4.1:20240201 * genesis_plus_gx_libretro: bumped to version 1.7.4:20240206 * handy_libretro: bumped to version 0.95:20240101 * mame2003_plus_libretro: bumped to version 1.0:20240208 * mednafen_lynx_libretro: bumped to version 0.9.32:20231101 * mednafen_ngp_libretro: bumped to version 0.9.36.1:20231101 * mednafen_pce_fast_libretro: bumped to version 0.9.38.7:20240202 * mednafen_pce_libretro: bumped to version 0.9.38.7:20240209 * mednafen_psx_hw_libretro: bumped to version 0.9.44.1:20240202 * mednafen_psx_libretro: bumped to version 0.9.44.1:20240202 * mednafen_supergrafx_libretro: bumped to version 0.9.38.7:20240209 * mednafen_vb_libretro: bumped to version 0.9.36.1:20231101 * mednafen_wswan_libretro: bumped to version 0.9.35.1:20231101 * mesen_libretro: bumped to version 0.9.4:20240130 * mupen64plus_next_libretro: bumped to version 1.0:20230521 * nestopia_libretro: bumped to version 1.49:20240203 * neocd_libretro: bumped to version 0.5:20240201 * o2em_libretro: bumped to version 1.18:20231019 * opera_libretro: bumped to version 1.0.0:20240113 * parallel_n64_libretro: bumped to version 2.0rc2:20240115 * snes9x_libretro: bumped to version 1.60:20231013 * stella_libretro: bumped to version 6.5.3:20240202 * cannonball_libretro: bumped to version 0.34:20231031 * reminiscence_libretro: bumped to version 0.3.6:20240105 * tyrquake_libretro: bumped to version 0.62:20231031 * craft_libretro: bumped to version 1.0:20231101
53 lines
1.5 KiB
Bash
53 lines
1.5 KiB
Bash
SUMMARY="A port of the EightyOne ZX-81 emulator to libretro"
|
|
DESCRIPTION="81-libretro is an work in progress port of the EightyOne \
|
|
(a.k.a. THE Sinclair Emulator) to libretro. It's being developed on Windows \
|
|
with MinGW (64 bits) and Debian 8, and tested on RetroArch 1.2 frontend."
|
|
HOMEPAGE="https://github.com/libretro/81-libretro/"
|
|
COPYRIGHT="2008-2018 Michael D Wynne, the libretro team"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
srcGitRev="525d5c18f1ff3fc54c37e083a475225d9179d59d"
|
|
SOURCE_URI="https://github.com/libretro/81-libretro/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="e4611e88159e3a77efe3b029f9edfa40127e98cb8af0e1a9d320cc4d3d137708"
|
|
SOURCE_FILENAME="81-libretro-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="81-libretro-$srcGitRev"
|
|
ADDITIONAL_FILES="81_libretro.info.in"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
81_libretro$secondaryArchSuffix = $portVersion
|
|
addon:81_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/81_libretro.info.in \
|
|
> 81_libretro.info
|
|
make -f Makefile.libretro $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
install -m 0755 -d "$docDir"
|
|
install -m 0644 -t "$docDir" README.md
|
|
install -m 0755 -d "$addOnsDir"/libretro
|
|
install -m 0644 -t "$addOnsDir"/libretro \
|
|
81_libretro.info \
|
|
81_libretro.so
|
|
}
|