mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
* bluemsx_libretro: bumped to version 2.9.0:20201018 * cap32_libretro: bumped to version 4.2.0:20201007 * fmsx_libretro: bumped to version 4.9:20201018 * fuse_libretro: bumped to version 1.1.1:20201027 * hatari_libretro: bumped to version 1.8:20201028 * dosbox_libretro: bumped to version 0.74:20200930 * fceumm_libretro: bumped to version 0.0.1:20201117 * flycast_libretro: bumped to version 0.1:20201122 * freeintv_libretro: bumped to version 0.0:20201018 * gambatte_libretro: bumped to version 0.5.0:20201118 * genesis_plus_gx_libretro: bumped to version 1.7.4:20201118 * gpsp_libretro: bumped to version 0.91:20201110 * handy_libretro: bumped to version 0.95:20201019 * mednafen_gba_libretro: bumped to version 0.9.36:20201014 * mednafen_lynx_libretro: bumped to version 0.9.32:20201118 * mednafen_ngp_libretro: bumped to version 0.9.36.1:20201015 * mednafen_pce_fast_libretro: bumped to version 0.9.38.7:20201112 * mednafen_pce_libretro: bumped to version 0.9.38.7:20201110 * mednafen_pcfx_libretro: bumped to version 0.9.33.3:20201110 * mednafen_psx_hw_libretro: bumped to version 0.9.38.6:20201112 * mednafen_psx_libretro: bumped to version 0.9.39.2:20201112 * mednafen_saturn_libretro: bumped to version 0.9.45.1:20201110 * mednafen_supergrafx_libretro: bumped to version 0.9.38.7:20201110 * mednafen_vb_libretro: bumped to version 0.9.36.1:20201014 * mednafen_wswan_libretro: bumped to version 0.9.35.1:20201026 * meteor_libretro: bumped to version 1.4:20201012 * mgba_libretro: bumped to version 0.6.1:20201118 * nestopia_libretro: bumped to version 1.49:20201008 * o2em_libretro: bumped to version 1.18:20201020 * opera_libretro: bumped to version 1.0.0:20201110 * parallel_n64_libretro: bumped to version 2.0rc2:20201109 * pcsx_rearmed_libretro: bumped to version r22:20201108 * picodrive_libretro: bumped to version 1.92:20201030 * retroarch_assets: bumped to version 0:20201026 * snes9x_libretro: bumped to version 1.60:20201008 * vba_next_libretro: bumped to version 1.0.2:20201007 * virtualjaguar_libretro: bumped to version 2.1.2:20201007 * reminiscence_libretro: bumped to version 0.3.6:20201007 * craft_libretro: bumped to version 1.0:20201008 * 2048_libretro: bumped to version 1.0:20201017 * gme_libretro: bumped to version 0.5.2:20201018
54 lines
1.6 KiB
Bash
54 lines
1.6 KiB
Bash
SUMMARY="A port of Gambatte, a Nintendo Game Boy emulator to the libretro API"
|
|
DESCRIPTION="Gambatte is an accuracy-focused, open-source, cross-platform \
|
|
Game Boy Color emulator written in C++. It is based on hundreds of corner case \
|
|
hardware tests, as well as previous documentation and reverse engineering \
|
|
efforts."
|
|
HOMEPAGE="https://github.com/sinamas/gambatte"
|
|
COPYRIGHT="2007-2018 Sindre Aamås, the libretro team"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
srcGitRev="93e27debd228d65140f5107c6e7412b6c4abb3b6"
|
|
SOURCE_URI="https://github.com/libretro/gambatte-libretro/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="f99160c9fdca9a0cd8a3fa92807a37957ac97b4df15be5ec25837591a463e3eb"
|
|
SOURCE_FILENAME="gambatte-libretro-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="gambatte-libretro-$srcGitRev"
|
|
ADDITIONAL_FILES="gambatte_libretro.info.in"
|
|
|
|
ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
gambatte_libretro$secondaryArchSuffix = $portVersion
|
|
addon:gambatte_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/gambatte_libretro.info.in \
|
|
> gambatte_libretro.info
|
|
make -f Makefile.libretro $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 \
|
|
gambatte_libretro.info \
|
|
gambatte_libretro.so
|
|
}
|