mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
Added new version and removed the old one for beshare, fix broken thing and reformat the style to follow guidelines: - belife - beshare - catkeyseditor - colors - copynametoclipboard - desknotes - genesis_commander
43 lines
955 B
Bash
43 lines
955 B
Bash
SUMMARY="A filemanager for Haiku"
|
|
DESCRIPTION="Genesis Commander is a full featured file manager for Haiku"
|
|
HOMEPAGE="https://github.com/HaikuArchives/GenesisCommander"
|
|
COPYRIGHT="2002-2004 Zsolt Prievara"
|
|
LICENSE="MIT"
|
|
REVISION="2"
|
|
srcGitRev="a5d4ef1521787e48fc40186cc1374cffe40527f1"
|
|
SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="af9b44278203c0abcda6543d016ae2657ad347b6eaf533af1e85fca00f49f3d3"
|
|
SOURCE_DIR="GenesisCommander-$srcGitRev"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 !x86_64"
|
|
|
|
PROVIDES="
|
|
genesis_commander = $portVersion
|
|
app:GenesisCommander = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
makefile_engine
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd src
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp src/objects/GenesisCommander $appsDir
|
|
addAppDeskbarSymlink $appsDir/GenesisCommander "Genesis Commander"
|
|
}
|