From 71c7a14c536239cbbca1242f64500f716bbb6deb Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini <3501519+jackburton79@users.noreply.github.com> Date: Tue, 15 Oct 2024 18:29:13 +0200 Subject: [PATCH] Add recipe for Genio 3.1 (#11213) * Move Genio to $appsDir and data to $dataDir * Fix for real * Added recipe for Genio 3.1 * Fix checksum * Updated checksum for the new tag --- .../genio/{genio-3.0.recipe => genio-3.1.recipe} | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) rename haiku-apps/genio/{genio-3.0.recipe => genio-3.1.recipe} (87%) diff --git a/haiku-apps/genio/genio-3.0.recipe b/haiku-apps/genio/genio-3.1.recipe similarity index 87% rename from haiku-apps/genio/genio-3.0.recipe rename to haiku-apps/genio/genio-3.1.recipe index d40294249..45aec5180 100644 --- a/haiku-apps/genio/genio-3.0.recipe +++ b/haiku-apps/genio/genio-3.1.recipe @@ -15,9 +15,9 @@ HOMEPAGE="https://github.com/Genio-The-Haiku-IDE/Genio/releases" COPYRIGHT="2022-2024 The Genio Team" LICENSE="BSD (3-clause) MIT" -REVISION="3" +REVISION="1" SOURCE_URI="https://github.com/Genio-The-Haiku-IDE/Genio/archive/v$portVersion.tar.gz" -CHECKSUM_SHA256="64cb18b552a6336e22903b6fc659253bf1ad02831fb2bc4dd892e7e65023465c" +CHECKSUM_SHA256="c5328a21c1334fbd493801e7e3646a697bf0e33868784fd9804739116f2ca06a" SOURCE_FILENAME="Genio-v$portVersion.tar.gz" SOURCE_DIR="Genio-$portVersion" @@ -62,12 +62,13 @@ BUILD() INSTALL() { - install -m 0755 -d "$appsDir/Genio" - install -m 0755 -t "$appsDir/Genio/" app/Genio - cp -a data "$appsDir/Genio/" + install -m 0755 -d "$appsDir" + install -m 0755 -t "$appsDir" app/Genio + mkdir -p "$dataDir/Genio" + cp -a data/* "$dataDir/Genio" mkdir -p $docDir cp -r documentation/* $docDir/ - addAppDeskbarSymlink $appsDir/Genio/Genio + addAppDeskbarSymlink $appsDir/Genio }