SUMMARY="A color matching game" DESCRIPTION="The goal of the game is to rotate and position the circles so that \ each touching line matches in color. You rotate circles by right clicking, \ and you move circles by dragging them. The game stores the positions and \ rotations of the circles across runs." HOMEPAGE="https://gottcode.org/hexalate/" COPYRIGHT="2009-2020 Graeme Gott" LICENSE="GNU GPL v3" REVISION="1" SOURCE_URI="https://gottcode.org/hexalate/hexalate-$portVersion.tar.bz2" CHECKSUM_SHA256="4e1a8391c072d030964cc4b4953031217bc8633c0d9a326a43110e9e4e4e0a62" SOURCE_DIR="hexalate-$portVersion" ADDITIONAL_FILES="hexalate.rdef.in" ARCHITECTURES="all !x86_gcc2" SECONDARY_ARCHITECTURES="x86" PROVIDES=" hexalate$secondaryArchSuffix = $portVersion app:Hexalate$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/Hexalate \ -DCMAKE_INSTALL_MANDIR=$manDir cmake --build build $jobArgs } INSTALL() { cmake --install build # Remove unnecessary data files rm -r $dataDir/Hexalate/applications rm -r $dataDir/Hexalate/icons rm -r $dataDir/Hexalate/metainfo local APP_SIGNATURE="application/x-vnd.gottcode-hexalate" 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/hexalate.rdef.in > $sourceDir/hexalate.rdef mv $appsDir/hexalate $appsDir/Hexalate addResourcesToBinaries $sourceDir/hexalate.rdef \ $appsDir/Hexalate mimeset -f $appsDir/Hexalate addAppDeskbarSymlink $appsDir/Hexalate }