mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
libretro: various cores update (#4301)
* 81_libretro: bumped to version 1.0a:20190917 * atari800_libretro: bumped to version 3.1.0:20190907 * bluemsx_libretro: bumped to version 2.9.0:20190902 * cap32_libretro: bumped to version 4.2.0:20190907 * fmsx_libretro: bumped to version 4.9:20190905 * fuse_libretro: bumped to version 1.1.1:20190729 * hatari_libretro: bumped to version 1.8:20190923 * nekop2_libretro: bumped to version 0.86:20190914 * mrboom_libretro: bumped to version 4.7:20190914 * dosbox_libretro: bumped to version 0.74:20190902 * fceumm_libretro: bumped to version 0.0.1:20190905 * flycast_libretro: bumped to version 0.1:20191016 * freeintv_libretro: bumped to version 20180214:20190905 * gambatte_libretro: bumped to version 0.5.0:20191010 * gearboy_libretro: bumped to version 2.5:20181103 * genesis_plus_gx_libretro: bumped to version 1.7.4:20190916 * gpsp_libretro: bumped to version 0.91:20190914 * gw_libretro: bumped to version 1.6.2:20190816 * handy_libretro: bumped to version 0.95:20190801 * mednafen_gba_libretro: bumped to version 0.9.36:20190911 * mednafen_lynx_libretro: bumped to version 0.9.32:20190911 * mednafen_ngp_libretro: bumped to version 0.9.36.1:20190911 * mednafen_pce_fast_libretro: bumped to version 0.9.38.7:20190911 * mednafen_pcfx_libretro: bumped to version 0.9.33.3:20190911 * mednafen_supergrafx_libretro: bumped to version 0.9.38.7:20190911 * mednafen_vb_libretro: bumped to version 0.9.36.1:20190912 * mednafen_wswan_libretro: bumped to version 0.9.35.1:20190914 * meteor_libretro: bumped to version 1.4:20190912 * o2em_libretro: bumped to version 1.18:20190914 * pcsx_rearmed_libretro: bumped to version r22:20191007 * picodrive_libretro: bumped to version 1.92:20190905 * vba_next_libretro: bumped to version 1.0.2:20190924 * vecx_libretro: bumped to version 1.2:20190817 * virtualjaguar_libretro: bumped to version 2.1.2:20190625 * 3dengine_libretro: bumped to version 1.0:20180406 * reminiscence_libretro: bumped to version 0.3.6:20190914 * scummvm_libretro: bumped to version 2.0.0:20191013 * tyrquake_libretro: bumped to version 0.62:20191013 * craft_libretro: bumped to version 1.0:20190626 * 2048_libretro: bumped to version 1.0:20190902 * gme_libretro: bumped to version 0.5.2:20190905
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
SUMMARY="A port of TyrQuake, a Quake 1 engine, to the libretro architecture"
|
||||
DESCRIPTION="TyrQuake is a fork of the Quake engine, also known as ID tech 2. \
|
||||
It supports Quake and Quakeworld in both software and GL versions. Its goal \
|
||||
is to allow running Quake on modern systems as accurately as the original game \
|
||||
but provides smoother model animations, coloured lighting, fullbrights in \
|
||||
GLQuake, along other improvements."
|
||||
HOMEPAGE="https://disenchant.net/tyrquake/"
|
||||
COPYRIGHT="2003-2018 Kevin Shanahan, the libretro team"
|
||||
LICENSE="GNU GPL v2"
|
||||
REVISION="1"
|
||||
srcGitRev="0795020276012ea26103fc5716183157e124a941"
|
||||
SOURCE_URI="https://github.com/libretro/tyrquake/archive/$srcGitRev.tar.gz"
|
||||
CHECKSUM_SHA256="c2718abb88fae44ae16bdc36902dcc3c9659410ea46f86c5876cb57160cdb682"
|
||||
SOURCE_FILENAME="libretro-tyrquake-${portVersion/_/-}-$srcGitRev.tar.gz"
|
||||
SOURCE_DIR="tyrquake-$srcGitRev"
|
||||
ADDITIONAL_FILES="tyrquake_libretro.info.in"
|
||||
|
||||
ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
|
||||
SECONDARY_ARCHITECTURES="x86"
|
||||
|
||||
PROVIDES="
|
||||
tyrquake_libretro$secondaryArchSuffix = $portVersion
|
||||
addon:tyrquake_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/tyrquake_libretro.info.in \
|
||||
> tyrquake_libretro.info
|
||||
make $jobArgs clean && \
|
||||
make $jobArgs
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
install -m 0755 -d "$docDir"
|
||||
install -m 0644 -t "$docDir" readme.txt readme-id.txt gnu.txt
|
||||
install -m 0755 -d "$addOnsDir"/libretro
|
||||
install -m 0644 -t "$addOnsDir"/libretro \
|
||||
tyrquake_libretro.info \
|
||||
tyrquake_libretro.so
|
||||
}
|
||||
Reference in New Issue
Block a user