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
This commit is contained in:
Stefano Ceccherini
2024-10-15 18:29:13 +02:00
committed by GitHub
parent a719d2b468
commit 71c7a14c53

View File

@@ -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
}