mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
* 81_libretro: bumped to version 1.0a:20220412 * atari800_libretro: bumped to version 3.1.0:20220327 * cap32_libretro: bumped to version 4.2.0:20220414 * fmsx_libretro: bumped to version 4.9:20220409 * fuse_libretro: bumped to version 1.1.1:20220410 * hatari_libretro: bumped to version 1.8:20220327 * puae_libretro: bumped to version 2.6.1:20220415 * xrick_libretro: bumped to version 1.0.0.6:20220331 * desmume_libretro: bumped to version 0.9.11:20220405 * dosbox_pure_libretro: bumped to version 0.13:20220405 * fbneo_libretro: bumped to version 1.0.0.0:20220415 * fceumm_libretro: bumped to version 0.0.1:20220406 * flycast_libretro: bumped to version 0.1:20220406 * genesis_plus_gx_libretro: bumped to version 1.7.4:20220403 * gpsp_libretro: bumped to version 0.91:20220409 * gw_libretro: bumped to version 1.6.2:20220410 * handy_libretro: bumped to version 0.95:20220414 * mame2003_plus_libretro: bumped to version 1.0:20220408 * mednafen_lynx_libretro: bumped to version 0.9.32:20220327 * mednafen_ngp_libretro: bumped to version 0.9.36.1:20220409 * mednafen_pcfx_libretro: bumped to version 0.9.33.3:20220409 * mednafen_vb_libretro: bumped to version 0.9.36.1:20220409 * mednafen_wswan_libretro: bumped to version 0.9.35.1:20220409 * mesen_libretro: bumped to version 0.9.4:20220407 * nestopia_libretro: bumped to version 1.49:20220409 * o2em_libretro: bumped to version 1.18:20220409 * parallel_n64_libretro: bumped to version 2.0rc2:20220406 * pcsx_rearmed_libretro: bumped to version r22:20220409 * picodrive_libretro: bumped to version 1.92:20220405 * snes9x_libretro: bumped to version 1.60:20220414 * stella_libretro: bumped to version 6.5.3:20220413 * stella2014_libretro: bumped to version 3.9.3:20220409 * vba_next_libretro: bumped to version 1.0.2:20220409 * vecx_libretro: bumped to version 1.2:20220327 * 3dengine_libretro: bumped to version 1.0:20220405 * reminiscence_libretro: bumped to version 0.3.6:20220405 * scummvm_libretro: bumped to version 2.0.0:20220406 * tyrquake_libretro: bumped to version 0.62:20220409 * 2048_libretro: bumped to version 1.0:20220327 * gme_libretro: bumped to version 0.5.2:20220410
58 lines
1.8 KiB
Bash
58 lines
1.8 KiB
Bash
SUMMARY="A libretro port of Blargg's Game_Music_Emu music library"
|
|
DESCRIPTION="Game_Music_Emu emulates game music in several popular file \
|
|
formats: AY (ZX Spectrum, Amstrad CPC), GBS (Nintendo Game Boy), GYM (Sega \
|
|
Genesis, Mega Drive), HES (NEC TurboGrafx-16, PC Engine), KSS (MSX Home \
|
|
Computer, other Z80 systems (doesn't support FM sound)), NSF/NSFE (Nintendo \
|
|
NES, Famicom (with VRC 6, Namco 106, and FME-7 sound)), SAP (Atari systems \
|
|
using POKEY sound chip), SPC (Super Nintendo, Super Famicom), VGM/VGZ (Sega \
|
|
Master System, Mark III, Sega Genesis, Mega Drive, BBC Micro)"
|
|
HOMEPAGE="http://www.slack.net/~ant/libs/audio.html"
|
|
COPYRIGHT="2004-2020 Blargg, the libretro team"
|
|
LICENSE="GNU GPL v2
|
|
GNU LGPL v2"
|
|
REVISION="1"
|
|
srcGitRev="5fb30ebb8871624cecc07813212fb643fa8449f4"
|
|
SOURCE_URI="https://github.com/libretro/libretro-gme/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="ea4394c28fd63b3b1f8ca2e7aa83ad4a14fb360815e4d593065466712769550a"
|
|
SOURCE_FILENAME="libretro-gme-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="libretro-gme-$srcGitRev"
|
|
ADDITIONAL_FILES="gme_libretro.info.in"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
gme_libretro$secondaryArchSuffix = $portVersion
|
|
addon:gme_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/gme_libretro.info.in \
|
|
> gme_libretro.info
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
install -m 0755 -d "$docDir"
|
|
install -m 0644 -t "$docDir" LICENSE README.md
|
|
install -m 0755 -d "$addOnsDir"/libretro
|
|
install -m 0644 -t "$addOnsDir"/libretro \
|
|
gme_libretro.info \
|
|
gme_libretro.so
|
|
}
|