From 152545540749a9ea0f81721b15768edb9c6f8854 Mon Sep 17 00:00:00 2001 From: DarkmatterVale Date: Wed, 3 Feb 2016 20:24:29 +0000 Subject: [PATCH] Update tipster & haikuplot --- haiku-apps/haikuplot/haikuplot-1.0.1.recipe | 43 +++++++++++++++++++++ haiku-apps/tipster/tipster-1.0.1.recipe | 42 ++++++++++++++++++++ 2 files changed, 85 insertions(+) create mode 100644 haiku-apps/haikuplot/haikuplot-1.0.1.recipe create mode 100644 haiku-apps/tipster/tipster-1.0.1.recipe diff --git a/haiku-apps/haikuplot/haikuplot-1.0.1.recipe b/haiku-apps/haikuplot/haikuplot-1.0.1.recipe new file mode 100644 index 000000000..6f3ec3083 --- /dev/null +++ b/haiku-apps/haikuplot/haikuplot-1.0.1.recipe @@ -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 +} diff --git a/haiku-apps/tipster/tipster-1.0.1.recipe b/haiku-apps/tipster/tipster-1.0.1.recipe new file mode 100644 index 000000000..176c7b85a --- /dev/null +++ b/haiku-apps/tipster/tipster-1.0.1.recipe @@ -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 +}