mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 22:48:55 +02:00
* 81_libretro: bumped to version 1.0a:20220911 * atari800_libretro: bumped to version 3.1.0:20220726 * bk_libretro: bumped to version 1.0:20220726 * bluemsx_libretro: bumped to version 2.9.0:20220721 * cap32_libretro: bumped to version 4.2.0:20220918 * fmsx_libretro: bumped to version 4.9:20220726 * fuse_libretro: bumped to version 1.1.1:20220726 * hatari_libretro: bumped to version 1.8:20220616 * puae_libretro: bumped to version 2.6.1:20220915 * mrboom_libretro: bumped to version 5.2:20220725 * xrick_libretro: bumped to version 1.0.0.6:20220806 * blastem_libretro: bumped to version 0.6.3:20220726 * desmume_libretro: bumped to version 0.9.11:20220926 * dosbox_pure_libretro: bumped to version 0.13:20220916 * fbneo_libretro: bumped to version 1.0.0.0:20220925 * fceumm_libretro: bumped to version 0.0.1:20220929 * freeintv_libretro: bumped to version 0.0:20220805 * gambatte_libretro: bumped to version 0.5.0:20220822 * gearboy_libretro: bumped to version 3.4:20220927 * gearcoleco_libretro: bumped to version 1.0.0:20220927 * gearsystem_libretro: bumped to version 3.4.1:20220927 * genesis_plus_gx_libretro: bumped to version 1.7.4:20220923 * gpsp_libretro: bumped to version 0.91:20220726 * gw_libretro: bumped to version 1.6.2:20220726 * mame2003_plus_libretro: bumped to version 1.0:20220929 * mednafen_lynx_libretro: bumped to version 0.9.32:20220610 * mednafen_ngp_libretro: bumped to version 0.9.36.1:20220719 * mednafen_pce_fast_libretro: bumped to version 0.9.38.7:20220828 * mednafen_pce_libretro: bumped to version 0.9.38.7:20220721 * mednafen_pcfx_libretro: bumped to version 0.9.33.3:20220721 * mednafen_psx_libretro: bumped to version 0.9.44.1:20220913 * Bump: mednafen_saturn_libretro
58 lines
1.8 KiB
Bash
58 lines
1.8 KiB
Bash
SUMMARY="An Atari 8-bit computer and 5200 console emulator core for libretro"
|
|
DESCRIPTION="This is a free and portable Atari 8-bit computer and 5200 console \
|
|
emulator, originally written by David Firth and now developed by the Atari800 \
|
|
Development Team."
|
|
HOMEPAGE="https://atari800.github.io/"
|
|
COPYRIGHT="2001-2018, the Atari800 Dev team, the libretro team"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
srcGitRev="94033288b026fe699bc50703609807aa8075f4dd"
|
|
SOURCE_URI="https://github.com/libretro/libretro-atari800/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="4e33976c2de88fdfb1ceaecda99a205419cb19b5125b55835fb3414cef58abf6"
|
|
SOURCE_FILENAME="libretro-atari800-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="libretro-atari800-$srcGitRev"
|
|
ADDITIONAL_FILES="atari800_libretro.info.in"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
atari800_libretro$secondaryArchSuffix = $portVersion
|
|
addon:atari800_libretro$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
retroarch$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
sed -e "s/@DISPLAY_VERSION@/v${portVersion/_/-}/" \
|
|
$portDir/additional-files/atari800_libretro.info.in \
|
|
> atari800_libretro.info
|
|
make $jobArgs GIT_VERSION=${srcGitRev:0:7}
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
install -m 0755 -d "$docDir"
|
|
install -m 0644 -t "$docDir" atari800/DOC/BUGS atari800/DOC/CREDITS \
|
|
atari800/DOC/ChangeLog atari800/DOC/FAQ atari800/DOC/NEWS \
|
|
atari800/DOC/README atari800/DOC/TODO atari800/DOC/USAGE \
|
|
atari800/DOC/*.txt
|
|
install -m 0755 -d "$addOnsDir"/libretro
|
|
install -m 0644 -t "$addOnsDir"/libretro \
|
|
atari800_libretro.info \
|
|
atari800_libretro.so
|
|
}
|