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
55 lines
1.7 KiB
Bash
55 lines
1.7 KiB
Bash
SUMMARY="A port of NeoCD, a Neo Geo CD/CDZ emulator for libretro"
|
|
DESCRIPTION="NeoCD-Libretro is a complete rewrite of NeoCD from scratch in \
|
|
modern C++11. It is designed with accuracy and portability in mind rather \
|
|
than being all about speed like the older versions. The goal is also to \
|
|
document all that is known about the platform in the source code so other \
|
|
emulator authors can make their own implementations."
|
|
HOMEPAGE="https://github.com/libretro/neocd_libretro"
|
|
COPYRIGHT="2005-2021, Fabrice Martinez, the libretro team"
|
|
LICENSE="GNU LGPL v3"
|
|
REVISION="1"
|
|
srcGitRev="de42c4f280455f33f01a6581ec7c5e39464c6cfa"
|
|
SOURCE_URI="https://github.com/libretro/neocd_libretro/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="7b015b3595cb42d8b5446fae58d5cf02561c0832c13c438617b0a0c467cabafc"
|
|
SOURCE_FILENAME="neocd-libretro-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="neocd_libretro-$srcGitRev"
|
|
ADDITIONAL_FILES="neocd_libretro.info.in"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
neocd_libretro$secondaryArchSuffix = $portVersion
|
|
addon:neocd_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/neocd_libretro.info.in \
|
|
> neocd_libretro.info
|
|
make HAVE_CDROM=0 $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
install -m 0755 -d "$docDir"
|
|
install -m 0644 -t "$docDir" README.md LICENSE.md
|
|
install -m 0755 -d "$addOnsDir"/libretro
|
|
install -m 0644 -t "$addOnsDir"/libretro \
|
|
neocd_libretro.info \
|
|
neocd_libretro.so
|
|
}
|