diff --git a/haiku-apps/functionplotter/functionplotter-0.9.2.recipe b/haiku-apps/functionplotter/functionplotter-0.9.2.recipe new file mode 100644 index 000000000..bd0fbd4ce --- /dev/null +++ b/haiku-apps/functionplotter/functionplotter-0.9.2.recipe @@ -0,0 +1,48 @@ +SUMMARY="Plots an abitrary number of functions in parameter form" +DESCRIPTION="The graph can be saved to a file as a bitmap, can be printed out \ +to a printer and can be copied to the clipboard. + +Includes a small functional programming language to define constants and \ +functions." +HOMEPAGE="https://github.com/HaikuArchives/FunctionPlotter" +COPYRIGHT="2000 Michael Pfeiffer" +LICENSE="GNU GPL v2" +REVISION="1" +srcGitRev="571951244bfc6a5bad871c5fccab87b6a3ca7efd" +SOURCE_URI="https://github.com/HaikuArchives/FunctionPlotter/archive/$srcGitRev.tar.gz" +CHECKSUM_SHA256="3f6c420e1348985e3ecc410b287cd982daa00489f8f69733ffb93936c5499c08" +SOURCE_FILENAME="FunctionPlotter-$portVersion-$srcGitRev.tar.gz" +SOURCE_DIR="FunctionPlotter-$srcGitRev" + +ARCHITECTURES="x86_gcc2 ?x86 ?x86_64" + +PROVIDES=" + functionplotter = $portVersion + app:FunctionPlotter = $portVersion + " +REQUIRES=" + haiku + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:g++ + cmd:make + cmd:xres + " + +BUILD() +{ + make $jobArgs -C src +} + +INSTALL() +{ + mkdir -p "$appsDir" + cp ./src/FunctionPlotter "$appsDir" + + addAppDeskbarSymlink "$appsDir"/FunctionPlotter +}