mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 23:18:58 +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
52 lines
1.4 KiB
Bash
52 lines
1.4 KiB
Bash
SUMMARY="A port of Handy, an Atari Lynx emulator for the libretro API"
|
|
DESCRIPTION="Handy is an emulator of the Atari Lynx handheld. It requires the \
|
|
Lynx BIOS to boot and start games."
|
|
HOMEPAGE="http://handy.sourceforge.net/"
|
|
COPYRIGHT="1997-2018 Keith Wilkins, the libretro team"
|
|
LICENSE="Zlib"
|
|
REVISION="1"
|
|
srcGitRev="65d6b865544cd441ef2bd18cde7bd834c23d0e48"
|
|
SOURCE_URI="https://github.com/libretro/libretro-handy/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="d244180c5f427afbbab58409f2d2e5247ffb0624bf33cf45b2488576d9467625"
|
|
SOURCE_FILENAME="handy-libretro-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="libretro-handy-$srcGitRev"
|
|
ADDITIONAL_FILES="handy_libretro.info.in"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
handy_libretro$secondaryArchSuffix = $portVersion
|
|
addon:handy_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/handy_libretro.info.in \
|
|
> handy_libretro.info
|
|
make $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 \
|
|
handy_libretro.info \
|
|
handy_libretro.so
|
|
}
|