Files
haikuports/games-engines/3dengine_libretro/3dengine_libretro-1.0_20250304.recipe
kwyxz 02b6fe7578 libretro cores : bumped (#12220)
* bluemsx_libretro: bumped to version 2.9.0:20250416

* cap32_libretro: bumped to version 4.2.0:20250208

* puae_libretro: bumped to version 2.6.1:20250415

* dosbox_pure_libretro: bumped to version 0.13:20250410

* fbneo_libretro: bumped to version 1.0.0.0:20250420

* fceumm_libretro: bumped to version 0.0.1:20250411

* freeintv_libretro: bumped to version 0.0:20250305

* gambatte_libretro: bumped to version 0.5.0:20250418

* gearboy_libretro: bumped to version 3.4:20250417

* gearcoleco_libretro: bumped to version 1.0.0:20250417

* gearsystem_libretro: bumped to version 3.4.1:20250417

* genesis_plus_gx_libretro: bumped to version 1.7.4:20250418

* gpsp_libretro: bumped to version 0.91:20250120

* mame2003_plus_libretro: bumped to version 1.0:20250420

* mednafen_pce_fast_libretro: bumped to version 0.9.38.7:20250418

* mednafen_psx_hw_libretro: bumped to version 0.9.44.1:20250418

* mednafen_psx_libretro: bumped to version 0.9.44.1:20250418

* mednafen_saturn_libretro: bumped to version 0.9.45.1:20250317

* mgba_libretro: bumped to version 0.6.1:20250218

* mupen64plus_next_libretro: bumped to version 1.0:20250121

* nestopia_libretro: bumped to version 1.49:20250323

* parallel_n64_libretro: bumped to version 2.0rc2:20250302

* pcsx_rearmed_libretro: bumped to version r22:20250412

* stella_libretro: bumped to version 6.5.3:20250419

* vecx_libretro: bumped to version 1.2:20250412

* 3dengine_libretro: bumped to version 1.0:20250304
2025-04-21 06:05:15 +00:00

52 lines
1.4 KiB
Bash

SUMMARY="A 3D Engine using the libretro architecture"
DESCRIPTION="This 3D Engine for libretro GL with additional features \
(camera/location/...) should be compatible from libretro 3D/GLES 2.0 and up."
HOMEPAGE="https://github.com/libretro/libretro-3dengine"
COPYRIGHT="2014-2020 the libretro team"
LICENSE="GNU GPL v3"
REVISION="1"
srcGitRev="7772bd5965ab244ecc53580c8969a22455aa91d5"
SOURCE_URI="https://github.com/libretro/libretro-3dengine/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="3aa1f9220d30024d6de8d54d8c971a4dfce44ad63a80d714254c69542f1c9365"
SOURCE_FILENAME="libretro-3dengine-$portVersion-$srcGitRev.tar.gz"
SOURCE_DIR="libretro-3dengine-$srcGitRev"
ADDITIONAL_FILES="3dengine_libretro.info.in"
ARCHITECTURES="all !x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
3dengine_libretro$secondaryArchSuffix = $portVersion
addon:3dengine_libretro$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
retroarch$secondaryArchSuffix
lib:libGL$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libGL$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix
cmd:make
"
BUILD()
{
sed -e "s/@DISPLAY_VERSION@/v${portVersion/_/-}/" \
$portDir/additional-files/3dengine_libretro.info.in \
> 3dengine_libretro.info
make $jobArgs
}
INSTALL()
{
install -m 0755 -d "$addOnsDir"/libretro
install -m 0644 -t "$addOnsDir"/libretro \
3dengine_libretro.info \
3dengine_libretro.so
}