mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
75 lines
1.9 KiB
Bash
75 lines
1.9 KiB
Bash
SUMMARY="The reference frontend of libretro"
|
|
DESCRIPTION="RetroArch is a frontend for the libretro specification for \
|
|
emulation. Libretro supports easy creation of emulators, but people can also \
|
|
make their own frontends and plug existing emulators. It also supports OpenGL \
|
|
shaders and other cool stuff."
|
|
HOMEPAGE="https://libretro.com"
|
|
COPYRIGHT="2010-2015 The RetroArch Team"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/libretro/RetroArch/archive/1.0.0.3-beta.tar.gz"
|
|
CHECKSUM_SHA256="bd5be24d81c214db036b756e222f5a8e5cddd3e1c1a2a98180317673c0ca0cc7"
|
|
SOURCE_DIR="RetroArch-1.0.0.3-beta"
|
|
PATCHES="retroarch-1.0.0.3_beta.patchset"
|
|
|
|
ARCHITECTURES="!x86_gcc2 ?x86 ?x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
retroarch$secondaryArchSuffix = $portVersion
|
|
app:retroarch$secondaryArchSuffix = $portVersion
|
|
cmd:retroarch$secondaryArchSuffix = $portVersion
|
|
cmd:retroarch_joyconfig$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libsdl2$secondaryArchSuffix
|
|
lib:libGL$secondaryArchSuffix
|
|
ffmpeg$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
retroarch${secondaryArchSuffix}_devel = $portVersion
|
|
devel:retroarch$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES_devel="
|
|
haiku${secondaryArchSuffix}_devel
|
|
retroarch$secondaryArchSuffix == $portVersion base
|
|
ffmpeg${secondaryArchSuffix}_devel
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libsdl2$secondaryArchSuffix
|
|
devel:libgl$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:make
|
|
cmd:which
|
|
cmd:pkg_config$secondaryArchSuffix
|
|
cmd:gcc$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/RetroArch
|
|
mkdir -p $binDir
|
|
mkdir -p $includeDir
|
|
|
|
cp retroarch $appsDir/RetroArch
|
|
cp tools/retroarch-joyconfig $appsDir/RetroArch
|
|
|
|
symlinkRelative -s $appsDir/RetroArch/* $binDir
|
|
addAppDeskbarSymlink $appsDir/RetroArch/retroarch RetroArch
|
|
|
|
cp libretro.h $includeDir
|
|
packageEntries devel \
|
|
$developDir
|
|
}
|