Files
haikuports/games-puzzle/gottet/gottet-1.2.3.recipe
2024-04-08 12:10:57 +02:00

86 lines
2.3 KiB
Bash

SUMMARY="A tetris clone based on Qt6"
DESCRIPTION="Gottet is a clean, simple falling blocks game. \
Use the arrow keys to rotate and position each piece as it \
falls. Fill a whole row to clear it. Unlimited levels, with \
progressively faster speeds."
HOMEPAGE="https://gottcode.org/gottet/"
COPYRIGHT="2009-2020 Graeme Gott"
LICENSE="GNU GPL v3"
REVISION="1"
SOURCE_URI="https://gottcode.org/gottet/gottet-$portVersion.tar.bz2"
CHECKSUM_SHA256="0fafb1f4e43a91bfc86c6948af986605d458ec618476b803b40d5d0841d43f1a"
SOURCE_DIR="gottet-$portVersion"
ADDITIONAL_FILES="gottet.rdef.in"
ARCHITECTURES="all !x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
gottet$secondaryArchSuffix = $portVersion
app:Gottet$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libGL$secondaryArchSuffix
lib:libQt6Core$secondaryArchSuffix
lib:libQt6Gui$secondaryArchSuffix
lib:libQt6Widgets$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libQt6Core$secondaryArchSuffix
devel:libQt6Gui$secondaryArchSuffix
devel:libQt6UiTools$secondaryArchSuffix
devel:libQt6Widgets$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:cmake
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:linguist6$secondaryArchSuffix
cmd:make
"
BUILD()
{
cmake -B build -S . \
-DCMAKE_BUILD_TYPE='None' \
-Wno-dev \
-DCMAKE_INSTALL_BINDIR=$appsDir \
-DCMAKE_INSTALL_DATADIR=$dataDir/Gottet \
-DCMAKE_INSTALL_MANDIR=$manDir
cmake --build build $jobArgs
}
INSTALL()
{
cmake --install build
# Remove unnecessary data files
rm -r $dataDir/Gottet/applications
rm -r $dataDir/Gottet/icons
rm -r $dataDir/Gottet/metainfo
local APP_SIGNATURE="application/x-vnd.gottcode-gottet"
local MAJOR="`echo "$portVersion" | cut -d. -f1`"
local MIDDLE="`echo "$portVersion" | cut -d. -f2`"
local MINOR="`echo "$portVersion" | cut -d. -f3`"
local LONG_INFO="$SUMMARY"
sed \
-e "s|@APP_SIGNATURE@|$APP_SIGNATURE|" \
-e "s|@MAJOR@|$MAJOR|" \
-e "s|@MIDDLE@|$MIDDLE|" \
-e "s|@MINOR@|$MINOR|" \
-e "s|@LONG_INFO@|$LONG_INFO|" \
$portDir/additional-files/gottet.rdef.in > $sourceDir/gottet.rdef
mv $appsDir/gottet $appsDir/Gottet
addResourcesToBinaries $sourceDir/gottet.rdef \
$appsDir/Gottet
mimeset -f $appsDir/Gottet
addAppDeskbarSymlink $appsDir/Gottet
}