Files
haikuports/haiku-apps/globe/globe-0.4.recipe
Richard Nyhus-Smith 4eb7ba30fd Update globe-0.4.recipe (#12320)
Change website to HaikuArchives repo, old website is dead.
2025-05-04 10:13:08 +00:00

45 lines
881 B
Bash

SUMMARY="A web editor"
DESCRIPTION="Globe is an editor with support for HTML and PHP. It offers \
syntax highlighting and basic project management."
HOMEPAGE="https://github.com/HaikuArchives/Globe"
COPYRIGHT="2001-2004 Gergely Rózsahegyi"
LICENSE="GNU GPL v2"
REVISION="5"
srcGitRev="fca4adbe61171a30c2da9920f1aabdf304d55d23"
SOURCE_URI="https://github.com/HaikuArchives/Globe/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="282061764d02f8198f5be3f5609e3ad71fd65b3c40085433531e62294e4895ee"
SOURCE_DIR="Globe-$srcGitRev"
ARCHITECTURES="all"
PROVIDES="
globe = $portVersion
app:Globe = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:make
"
BUILD()
{
cd src
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
cd src
mkdir -p $appsDir
cp objects/Globe $appsDir/Globe
addAppDeskbarSymlink $appsDir/Globe
}