mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
* 81_libretro: bumped to version 1.0a:20200613 * atari800_libretro: bumped to version 3.1.0:20200626 * opera_libretro: bumped to version 1.0.0:20200605 * fbneo_libretro: bumped to version 0.2.97.44:20200703 * fceumm_libretro: bumped to version 0.0.1:20200604 * flycast_libretro: bumped to version 0.1:20200703 * gambatte_libretro: bumped to version 0.5.0:20200630 * gpsp_libretro: bumped to version 0.91:20200527 * handy_libretro: bumped to version 0.95:20200625 * mednafen_gba_libretro: bumped to version 0.9.36:20200623 * mednafen_lynx_libretro: bumped to version 0.9.32:20200630 * mednafen_ngp_libretro: bumped to version 0.9.36.1:20200630 * mednafen_pce_fast_libretro: bumped to version 0.9.38.7:20200630 * mednafen_pcfx_libretro: bumped to version 0.9.33.3:20200623 * mednafen_supergrafx_libretro: bumped to version 0.9.38.7:20200623 * mednafen_vb_libretro: bumped to version 0.9.36.1:20200630 * mednafen_wswan_libretro: bumped to version 0.9.35.1:20200701 * mgba_libretro: bumped to version 0.6.1:20200619 * o2em_libretro: bumped to version 1.18:20200609 * pcsx_rearmed_libretro: bumped to version r22:20200701 * picodrive_libretro: bumped to version 1.92:20200607 * vba_next_libretro: bumped to version 1.0.2:20200617 * vecx_libretro: bumped to version 1.2:20200605 * virtualjaguar_libretro: bumped to version 2.1.2:20200521 * yabause_libretro: bumped to version 0.9.15:20200605 * 2048_libretro: bumped to version 1.0:20200520
55 lines
1.7 KiB
Bash
55 lines
1.7 KiB
Bash
SUMMARY="A port of Vecx, a GCE Vectrex emulator to the libretro API"
|
|
DESCRIPTION="Vecx is a GCE Vectrex emulator, a vector display-based home video \
|
|
game console that was developed by Western Technologies/Smith Engineering. It \
|
|
had an integrated vector monitor, was monochrome and used plastic screen \
|
|
overlays (also emulated by Vecx) to simulate color and various static graphics \
|
|
and decorations. This is the libretro port of Vecx."
|
|
HOMEPAGE="https://www.valavan.net/vectrex.html"
|
|
COPYRIGHT="2002-2018 Valavan Manohararajah, John Hawthorn, the libretro team"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
srcGitRev="e572e5e52ed41cf5ac5bfed99a7e1351fb31ce55"
|
|
SOURCE_URI="https://github.com/libretro/libretro-vecx/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="1e33b190c2529f92f1a2806e5e6b3f74b1f1ab635d2fc7f9dbe9713a6f8f828c"
|
|
SOURCE_FILENAME="libretro-vecx-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="libretro-vecx-$srcGitRev"
|
|
ADDITIONAL_FILES="vecx_libretro.info.in"
|
|
|
|
ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
vecx_libretro$secondaryArchSuffix = $portVersion
|
|
addon:vecx_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/vecx_libretro.info.in \
|
|
> vecx_libretro.info
|
|
make -f Makefile.libretro $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
install -m 0755 -d "$docDir"
|
|
install -m 0644 -t "$docDir" LICENSE.md README.md
|
|
install -m 0755 -d "$addOnsDir"/libretro
|
|
install -m 0644 -t "$addOnsDir"/libretro \
|
|
vecx_libretro.info \
|
|
vecx_libretro.so
|
|
}
|