mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 22:48:55 +02:00
* 81_libretro: bumped to version 1.0a:20221106 * cap32_libretro: bumped to version 4.2.0:20221228 * puae_libretro: bumped to version 2.6.1:20230131 * bsnes_libretro: bumped to version 115.1:20211213 * dosbox_pure_libretro: bumped to version 0.13:20221105 * fbneo_libretro: bumped to version 1.0.0.0:20230208 * gambatte_libretro: bumped to version 0.5.0:20230203 * genesis_plus_gx_libretro: bumped to version 1.7.4:20230131 * gpsp_libretro: bumped to version 0.91:20230121 * handy_libretro: bumped to version 0.95:20230102 * mame2003_plus_libretro: bumped to version 1.0:20230204 * mednafen_lynx_libretro: bumped to version 0.9.32:20230120 * mednafen_pce_fast_libretro: bumped to version 0.9.38.7:20230113 * mednafen_pce_libretro: bumped to version 0.9.38.7:20230113 * mednafen_pcfx_libretro: bumped to version 0.9.33.3:20230113 * mednafen_psx_hw_libretro: bumped to version 0.9.44.1:20230203 * mednafen_psx_libretro: bumped to version 0.9.44.1:20230203 * mednafen_saturn_libretro: bumped to version 0.9.45.1:20221214 * mednafen_supergrafx_libretro: bumped to version 0.9.38.7:20230113 * mednafen_vb_libretro: bumped to version 0.9.36.1:20221214 * mednafen_wswan_libretro: bumped to version 0.9.35.1:20230120 * melonds_libretro: bumped to version 0.8.3:20221207 * mesen_libretro: bumped to version 0.9.4:20221212 * mgba_libretro: bumped to version 0.6.1:20230126 * mupen64plus_next_libretro: bumped to version 1.0:20230117 * nestopia_libretro: bumped to version 1.49:20230207 * pcsx_rearmed_libretro: bumped to version r22:20221211 * picodrive_libretro: bumped to version 1.92:20230131 * retroarch_assets: bumped to version 0:20221024 * snes9x_libretro: bumped to version 1.60:20221226 * stella_libretro: bumped to version 6.5.3:20230208 * vecx_libretro: bumped to version 1.2:20230109 * virtualjaguar_libretro: bumped to version 2.1.2:20221119 * yabause_libretro: bumped to version 0.9.15:20230103 * craft_libretro: bumped to version 1.0:20230109 * 2048_libretro: bumped to version 1.0:20221110 * fceumm_libretro: bumped to version 0.0.1:20230209 * neocd_libretro: bumped to version 0.5:20221221
53 lines
1.6 KiB
Bash
53 lines
1.6 KiB
Bash
SUMMARY="A standalone port of Mednafen PCE to libretro"
|
|
DESCRIPTION="This is a port of Mednafen PCE to libretro, a MEC PC Engine \
|
|
and SuperGrafx emulator. This version focuses on accuracy while the \
|
|
PCE Fast version focuses on speed."
|
|
HOMEPAGE="https://mednafen.github.io/documentation/pce.html"
|
|
COPYRIGHT="2005-2020 Forgotten, the Mednafen team, the libretro team"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
srcGitRev="f2750b72b58cbc9be0d7d9345bbdeeb634be64a8"
|
|
SOURCE_URI="https://github.com/libretro/beetle-pce-libretro/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="4902da56ee2211b1bcfff43d6af56b75bba5c44080c54889ef951237791ce7f8"
|
|
SOURCE_FILENAME="libretro-mednafen-pce-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="beetle-pce-libretro-$srcGitRev"
|
|
ADDITIONAL_FILES="mednafen_pce_libretro.info.in"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
mednafen_pce_libretro$secondaryArchSuffix = $portVersion
|
|
addon:mednafen_pce_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/mednafen_pce_libretro.info.in \
|
|
> mednafen_pce_libretro.info
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
install -m 0755 -d "$docDir"
|
|
install -m 0644 -t "$docDir" COPYING README.md
|
|
install -m 0755 -d "$addOnsDir"/libretro
|
|
install -m 0644 -t "$addOnsDir"/libretro \
|
|
mednafen_pce_libretro.info \
|
|
mednafen_pce_libretro.so
|
|
}
|