From d3caff8a33615a40b7b33db32ff156298e8dcedf Mon Sep 17 00:00:00 2001 From: 1wErt3r <301536+1wErt3r@users.noreply.github.com> Date: Sat, 16 Aug 2025 12:04:16 -0500 Subject: [PATCH] aceofwands: 1.0.4 recipe (#12745) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This adds a recipe for a simple Haiku native & MIT licensed tarot card reading application. Co-authored-by: politebot Co-authored-by: Joachim Mairböck --- games-misc/aceofwands/aceofwands-1.0.4.recipe | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 games-misc/aceofwands/aceofwands-1.0.4.recipe diff --git a/games-misc/aceofwands/aceofwands-1.0.4.recipe b/games-misc/aceofwands/aceofwands-1.0.4.recipe new file mode 100644 index 000000000..39c53c84f --- /dev/null +++ b/games-misc/aceofwands/aceofwands-1.0.4.recipe @@ -0,0 +1,46 @@ +SUMMARY="A tarot card reading application" +DESCRIPTION="Ace of Wands is a desktop application for Haiku that provides tarot card readings." +HOMEPAGE="https://github.com/1wErt3r/Ace_of_Wands" +COPYRIGHT="2025 politebot" +LICENSE="MIT" +REVISION="1" +SOURCE_URI="https://github.com/1wErt3r/Ace-of-Wands/archive/refs/tags/v$portVersion.tar.gz" +SOURCE_DIR="Ace-of-Wands-$portVersion" +CHECKSUM_SHA256="0a018318f5cea1970598d284c1303d458450536e62e5e84c71ac6818ee11b487" + +ARCHITECTURES="all !x86_gcc2" +SECONDARY_ARCHITECTURES="x86" + +PROVIDES=" + aceofwands$secondaryArchSuffix = $portVersion + app:aceofwands = $portVersion + " +REQUIRES=" + haiku$secondaryArchSuffix + lib:libcurl$secondaryArchSuffix + lib:libjsoncpp$secondaryArchSuffix + " + +BUILD_REQUIRES=" + haiku${secondaryArchSuffix}_devel + devel:libcurl$secondaryArchSuffix + devel:libjsoncpp$secondaryArchSuffix + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:g++$secondaryArchSuffix + cmd:make + " + +BUILD() +{ + make TARGET_DIR=. +} + +INSTALL() +{ + mkdir -p $appsDir + cp aceofwands $appsDir/ + addAppDeskbarSymlink $appsDir/aceofwands "Ace of Wands" +} +