Files
haikuports/haiku-apps/tipster/tipster-1.1.0.recipe
2018-05-11 18:54:16 +02:00

55 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"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://github.com/HaikuArchives/Tipster/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="25850a7e08d4b2f9054e1271b48aa3cc1defc374a0bf5ab568aaaa48d7bf310b"
SOURCE_DIR="Tipster-$portVersion"
ARCHITECTURES="x86_gcc2 x86_64"
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
}