Merge pull request #456 from DarkmatterVale/master

Update tipster & haikuplot
This commit is contained in:
waddlesplash
2016-02-04 14:14:37 -05:00
2 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
SUMMARY="An interface to the commandline program gnuplot"
DESCRIPTION="HaikuPlot is an application that provides an easy-to-use \
GUI interface to gnuplot, a popular commandline plotting tool."
HOMEPAGE="https://github.com/HaikuArchives/HaikuPlot"
COPYRIGHT="2015 Vale Tolpegin"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://github.com/HaikuArchives/HaikuPlot/archive/6def19ed31aeed80ab9fbcd0abe70de975598de2.tar.gz"
CHECKSUM_SHA256="66f67cfdf45bb60e5ba5fca36c324ec36ec3c86c634bb76d27542a86f1d9e1c8"
SOURCE_DIR="HaikuPlot-6def19ed31aeed80ab9fbcd0abe70de975598de2"
ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
haikuplot = $portVersion
app:HaikuPlot = $portVersion
"
REQUIRES="
haiku
cmd:gnuplot
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:make
cmd:gcc
"
BUILD()
{
make $jobArgs
}
INSTALL()
{
mkdir -p $appsDir/HaikuPlot
cp -r HaikuPlot/HaikuPlot $appsDir/HaikuPlot
cp -r demo $appsDir/HaikuPlot/demo
addAppDeskbarSymlink $appsDir/HaikuPlot/HaikuPlot
}

View File

@@ -0,0 +1,42 @@
SUMMARY="An application to display Haiku tips"
DESCRIPTION="Display brief but informative hints relating to interesting \
features about haiku."
HOMEPAGE="https://github.com/HaikuArchives/Tipster"
COPYRIGHT="2015 Vale Tolpegin"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://github.com/HaikuArchives/Tipster/archive/54fce3ad1630e68dbea77d88fe7cd4a23b45ec55.tar.gz"
CHECKSUM_SHA256="f8767b00fe0cafad1ff22b7eca8775433a435a7fe38b927004a6709a76512531"
SOURCE_DIR="Tipster-54fce3ad1630e68dbea77d88fe7cd4a23b45ec55"
ARCHITECTURES="x86 x86_gcc2"
PROVIDES="
tipster = $portVersion
app:tipster = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:make
cmd:gcc
"
BUILD()
{
make $jobArgs
}
INSTALL()
{
mkdir -p $appsDir/Tipster
cp -r Tipster/Tipster $appsDir/Tipster
cp -r tipster-tips.txt $appsDir/Tipster
addAppDeskbarSymlink $appsDir/Tipster/Tipster
}