mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
* cap32_libretro: bumped to version 4.2.0:20221003 * puae_libretro: bumped to version 2.6.1:20221004 * fbneo_libretro: bumped to version 1.0.0.0:20221003 * mame2003_plus_libretro: bumped to version 1.0:20221002 * mednafen_saturn_libretro: bumped to version 0.9.45.1:20220829 * mednafen_supergrafx_libretro: bumped to version 0.9.38.7:20220716 * mednafen_vb_libretro: bumped to version 0.9.36.1:20220828 * mednafen_wswan_libretro: bumped to version 0.9.35.1:20220618 * melonds_libretro: bumped to version 0.8.3:20220930 * mesen_libretro: bumped to version 0.9.4:20220829 * mupen64plus_next_libretro: bumped to version 1.0:20220825 * nestopia_libretro: bumped to version 1.49:20220822 * neocd_libretro: bumped to version 0.5:20220515 * o2em_libretro: bumped to version 1.18:20220726 * opera_libretro: bumped to version 1.0.0:20220725 * parallel_n64_libretro: bumped to version 2.0rc2:20220823 * pcsx_rearmed_libretro: bumped to version r22:20221002 * picodrive_libretro: bumped to version 1.92:20220930 * retroarch_assets: bumped to version 0:20220806 * sameboy_libretro: bumped to version 0.9.0:20220819 * snes9x_libretro: bumped to version 1.60:20220512 * vecx_libretro: bumped to version 1.2:20220728 * yabause_libretro: bumped to version 0.9.15:20220712 * tyrquake_libretro: bumped to version 0.62:20220724 * 2048_libretro: bumped to version 1.0:20220707 * gme_libretro: bumped to version 0.5.2:20220726
52 lines
1.5 KiB
Bash
52 lines
1.5 KiB
Bash
SUMMARY="A standalone port of Mednafen VB to libretro"
|
|
DESCRIPTION="This is a standalone port of Mednafen VB to libretro, a Nintendo \
|
|
Virtual Boy emulator. It is one of Mednafen's original systems."
|
|
HOMEPAGE="https://mednafen.github.io/documentation/vb.html"
|
|
COPYRIGHT="2005-2018 Forgotten, the Mednafen team, the libretro team"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
srcGitRev="162918f06d9a705330b2ba128e0d3b65fd1a1bcc"
|
|
SOURCE_URI="https://github.com/libretro/beetle-vb-libretro/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="9763153d0e5d60b7356f115bc9fee60b60597e44c040d4aa89088e026ca019c8"
|
|
SOURCE_FILENAME="libretro-mednafen-vb-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="beetle-vb-libretro-$srcGitRev"
|
|
ADDITIONAL_FILES="mednafen_vb_libretro.info.in"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
mednafen_vb_libretro$secondaryArchSuffix = $portVersion
|
|
addon:mednafen_vb_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_vb_libretro.info.in \
|
|
> mednafen_vb_libretro.info
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
install -m 0755 -d "$docDir"
|
|
install -m 0644 -t "$docDir" COPYING
|
|
install -m 0755 -d "$addOnsDir"/libretro
|
|
install -m 0644 -t "$addOnsDir"/libretro \
|
|
mednafen_vb_libretro.info \
|
|
mednafen_vb_libretro.so
|
|
}
|