Files
haikuports/haiku-apps/tipster/tipster-1.1.3.recipe

57 lines
1.2 KiB
Bash

SUMMARY="An application to display Haiku usage tips"
DESCRIPTION="Display brief but informative hints relating to interesting \
features about Haiku and their usage. It can be embedded as Replicant onto \
the Desktop and slideshow through the tips at a set interval.
Clicking on the category icon shown beside the tip opens a web page related \
to the tip's topic."
HOMEPAGE="https://github.com/HaikuArchives/Tipster"
COPYRIGHT="2015 Vale Tolpegin
2016 Hannah Pan
2016-2018 Humdinger
2017 Akshay Agarwal
2017 vanishakesswani
2018 Janus
2019-2021 HaikuArchives Team"
LICENSE="MIT"
REVISION="2"
srcGitRev="2c32beb22f0c4c8fee63c9af5f291b46821312e4"
SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="32cb528cfb558430aee660785ca940e51732d172e4c7700b4816ffdeb9c88de8"
SOURCE_DIR="Tipster-$srcGitRev"
ARCHITECTURES="all"
PROVIDES="
tipster = $portVersion
app:Tipster = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
"
BUILD()
{
make OBJ_DIR=objects $jobArgs
make OBJ_DIR=objects bindcatalogs
}
INSTALL()
{
mkdir -p $appsDir $dataDir/Tipster
cp -a objects/Tipster $appsDir
cp -a tips/* $dataDir/Tipster
addAppDeskbarSymlink $appsDir/Tipster
}