mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 22:48:55 +02:00
54 lines
1.6 KiB
Bash
54 lines
1.6 KiB
Bash
SUMMARY="A port of MrBoom, a Bomberman clone, to the libretro architecture"
|
|
DESCRIPTION="MrBoom is a colorful clone of the all-time classic Bomberman from \
|
|
Hudson Soft. It features 8 players, netplay, AI bots (new C++ feature), \
|
|
pushing bombs, remote controls and kangaroo riding, among others. Originally \
|
|
developed for MS-DOS, this is the port to the Libretro architecture."
|
|
HOMEPAGE="http://mrboom.mumblecore.org/"
|
|
COPYRIGHT="2001-2018 Remdy Software, the libretro team"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
srcGitRev="67b1b65633f67e79e0ff552f4571cbcf0969a535"
|
|
SOURCE_URI="https://github.com/libretro/mrboom-libretro/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="12848647106848317c8d237d35cf6ee93d1bd551c0bbb09b332042f6767e9671"
|
|
SOURCE_FILENAME="libretro-mrboom-${portVersion/_/-}-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="mrboom-libretro-$srcGitRev"
|
|
ADDITIONAL_FILES="mrboom_libretro.info.in"
|
|
|
|
ARCHITECTURES="!x86_gcc2 ?x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
mrboom_libretro$secondaryArchSuffix = $portVersion
|
|
addon:mrboom_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/mrboom_libretro.info.in \
|
|
> mrboom_libretro.info
|
|
make $jobArgs clean && make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
install -m 0755 -d "$docDir"
|
|
install -m 0644 -t "$docDir" README.md LICENSE
|
|
install -m 0755 -d "$addOnsDir"/libretro
|
|
install -m 0644 -t "$addOnsDir"/libretro \
|
|
mrboom_libretro.info \
|
|
mrboom_libretro.so
|
|
}
|