mirror of
https://github.com/yann64/haikuports.git
synced 2026-03-19 01:46:00 +01:00
* atari800_libretro: bumped to version 3.1.0:20260130 * bluemsx_libretro: bumped to version 2.9.0:20251104 * cap32_libretro: bumped to version 4.2.0:20260101 * fmsx_libretro: bumped to version 4.9:20250731 * puae_libretro: bumped to version 2.6.1:20251102 * xrick_libretro: bumped to version 1.0.0.6:20251230 * bsnes_libretro: bumped to version 115.1:20260109 * dosbox_pure_libretro: bumped to version 0.13:20260204 * fbneo_libretro: bumped to version 1.0.0.0:20260208 * fceumm_libretro: bumped to version 0.0.1:20250913 * flycast_libretro: bumped to version 0.1:20251212 * freeintv_libretro: bumped to version 0.0:20251226 * gambatte_libretro: bumped to version 0.5.0:20260116 * gearboy_libretro: bumped to version 3.4:20260208 * gearcoleco_libretro: bumped to version 1.0.0:20260208 * gearsystem_libretro: bumped to version 3.4.1:20260208 * genesis_plus_gx_libretro: bumped to version 1.7.4:20260123 * gpsp_libretro: bumped to version 0.91:20260126 * handy_libretro: bumped to version 0.95:20250616 * mame2003_plus_libretro: bumped to version 1.0:20260116 * mednafen_lynx_libretro: bumped to version 0.9.32:20250510 * mednafen_pce_fast_libretro: bumped to version 0.9.38.7:20260123 * mednafen_pce_libretro: bumped to version 0.9.38.7:20250622 * mednafen_psx_libretro: bumped to version 0.9.44.1:20260130 * mednafen_saturn_libretro: bumped to version 0.9.45.1:20260112 * mgba_libretro: bumped to version 0.6.1:20251013 * nestopia_libretro: bumped to version 1.49:20260110 * opera_libretro: bumped to version 1.0.0:20260127 * parallel_n64_libretro: bumped to version 2.0rc2:20251204 * pcsx_rearmed_libretro: bumped to version r22:20260128 * pokemini_libretro: bumped to version 0.60:20250510 * snes9x_libretro: bumped to version 1.60:20250908 * stella_libretro: bumped to version 6.5.3:20260126 * vecx_libretro: bumped to version 1.2:20260112 * yabause_libretro: bumped to version 0.9.15:20251220 * tyrquake_libretro: bumped to version 0.62:20251213 * 2048_libretro: bumped to version 1.0:20251213 * gme_libretro: bumped to version 0.5.2:20260128
59 lines
1.7 KiB
Bash
59 lines
1.7 KiB
Bash
SUMMARY="Flycast is a multiplatform Sega Dreamcast emulator"
|
|
DESCRIPTION="Flycast is a cross-platform SEGA Dreamcast, Naomi and AtomisWave \
|
|
emulator based off NullDC. It can accurately play several games and is in \
|
|
active development."
|
|
HOMEPAGE="https://github.com/libretro/flycast"
|
|
COPYRIGHT="2013-2021, drk||Raziel, PsyMan, gb_away, the libretro team"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
srcGitRev="b897744e27c730c7519784b2aef12ba7f658de31"
|
|
SOURCE_URI="https://github.com/libretro/flycast/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="677a9b4f4870e59dd896cb14852af6bfdcee661823f0b87a25f1430f0bae0972"
|
|
SOURCE_FILENAME="flycast-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="flycast-$srcGitRev"
|
|
ADDITIONAL_FILES="flycast_libretro.info.in"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="?x86"
|
|
|
|
PROVIDES="
|
|
flycast_libretro$secondaryArchSuffix = $portVersion
|
|
addon:flycast_libretro$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
retroarch$secondaryArchSuffix
|
|
lib:libGL$secondaryArchSuffix
|
|
lib:libiconv$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libGL$secondaryArchSuffix
|
|
devel:libiconv$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
sed -e "s/@DISPLAY_VERSION@/v${portVersion/_/-}/" \
|
|
$portDir/additional-files/flycast_libretro.info.in \
|
|
> flycast_libretro.info
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
install -m 0755 -d "$docDir"
|
|
install -m 0644 -t "$docDir" LICENSE README.md
|
|
install -m 0755 -d "$addOnsDir"/libretro
|
|
install -m 0644 -t "$addOnsDir"/libretro \
|
|
flycast_libretro.info \
|
|
flycast_libretro.so
|
|
}
|