mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 22:48:55 +02:00
* atari800_libretro: bumped to version 3.1.0:20200320 * bluemsx_libretro: bumped to version 2.9.0:20200306 * fmsx_libretro: bumped to version 4.9:20200106 * fuse_libretro: bumped to version 1.1.1:20200207 * hatari_libretro: bumped to version 1.8:20200317 * nekop2_libretro: bumped to version 0.86:20200316 * mrboom_libretro: bumped to version 4.7:20200325 * fbneo_libretro: bumped to version 0.2.97.44:20200325 * fceumm_libretro: bumped to version 0.0.1:20200325 * freeintv_libretro: bumped to version 20180214:20200109 * gambatte_libretro: bumped to version 0.5.0:20200207 * genesis_plus_gx_libretro: bumped to version 1.7.4:20200208 * gpsp_libretro: bumped to version 0.91:20200310 * handy_libretro: bumped to version 0.95:20200317 * mednafen_ngp_libretro: bumped to version 0.9.36.1:20200130 * mednafen_pce_fast_libretro: bumped to version 0.9.38.7:20200319 * mednafen_pcfx_libretro: bumped to version 0.9.33.3:20200109 * mednafen_psx_libretro: bumped to version 0.9.39.2:20200325 * mednafen_supergrafx_libretro: bumped to version 0.9.38.7:20200131 * mednafen_vb_libretro: bumped to version 0.9.36.1:20200109 * mednafen_wswan_libretro: bumped to version 0.9.35.1:20200124 * mgba_libretro: bumped to version 0.6.1:20200229 * o2em_libretro: bumped to version 1.18:20200203 * pcsx_rearmed_libretro: bumped to version r22:20200317 * picodrive_libretro: bumped to version 1.92:20200305 * vba_next_libretro: bumped to version 1.0.2:20200106 * vecx_libretro: bumped to version 1.2:20200109 * virtualjaguar_libretro: bumped to version 2.1.2:20200106 * yabause_libretro: bumped to version 0.9.15:20200218 * reminiscence_libretro: bumped to version 0.3.6:20200107 * tyrquake_libretro: bumped to version 0.62:20200113 * 2048_libretro: bumped to version 1.0:20200325 * gme_libretro: bumped to version 0.5.2:20200314
53 lines
1.5 KiB
Bash
53 lines
1.5 KiB
Bash
SUMMARY="An optimized VisualBoyAdvance-M core for the libretro API"
|
|
DESCRIPTION="VBA-Next is a fork of VBA-M, itself a fork of VisualBoyAdvance, \
|
|
a popular Nintendo Game Boy Advance emulator. VBA Next was developed by the \
|
|
libretro team as an optimized version of VBA-M."
|
|
HOMEPAGE="https://github.com/libretro/vba-next"
|
|
COPYRIGHT="2001-2018 Forgotten, the VBA-M team , the libretro team"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
srcGitRev="019132daf41e33a9529036b8728891a221a8ce2e"
|
|
SOURCE_URI="https://github.com/libretro/vba-next/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="29481df161a67fd2a9a3d5e4ff1c3330c3b60482c4527b9642a71f0e63505d6d"
|
|
SOURCE_FILENAME="libretro-vba-next-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="vba-next-$srcGitRev"
|
|
ADDITIONAL_FILES="vba_next_libretro.info.in"
|
|
|
|
ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
vba_next_libretro$secondaryArchSuffix = $portVersion
|
|
addon:vba_next_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/vba_next_libretro.info.in \
|
|
> vba_next_libretro.info
|
|
make -f Makefile.libretro $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
install -m 0755 -d "$docDir"
|
|
install -m 0644 -t "$docDir" LICENSE
|
|
install -m 0755 -d "$addOnsDir"/libretro
|
|
install -m 0644 -t "$addOnsDir"/libretro \
|
|
vba_next_libretro.info \
|
|
vba_next_libretro.so
|
|
}
|