From 02ffe07eb8c3dc20e2211c2b388a8f61bfc0c953 Mon Sep 17 00:00:00 2001 From: Josef Gajdusek Date: Wed, 26 Nov 2014 13:19:10 +0100 Subject: [PATCH] hdialog: Add recipe for hdialog --- haiku-apps/hdialog/hdialog-0.1_git.recipe | 40 +++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 haiku-apps/hdialog/hdialog-0.1_git.recipe diff --git a/haiku-apps/hdialog/hdialog-0.1_git.recipe b/haiku-apps/hdialog/hdialog-0.1_git.recipe new file mode 100644 index 000000000..314909963 --- /dev/null +++ b/haiku-apps/hdialog/hdialog-0.1_git.recipe @@ -0,0 +1,40 @@ +SUMMARY="Create GUI dialogs from shell scripts." +DESCRIPTION=" + This tools is able to create various GUI dialogs. This allows for shell \ + scripts to easily integrate to the system and interact with the user. + " +HOMEPAGE="https://github.com/atalax/hdialog" +SRC_URI="git+https://github.com/atalax/hdialog#4d64128" +REVISION="1" +LICENSE="MIT" +COPYRIGHT="2014 Josef Gajdusek" + +ARCHITECTURES="x86_gcc2 x86 x86_64" + +PROVIDES=" + hdialog = $portVersion + cmd:hdialog = $portVersion + " + +REQUIRES=" + haiku >= $haikuVersion + " + +BUILD_REQUIRES=" + haiku_devel >= $haikuVersion + makefile_engine + cmd:gcc + cmd:make + cmd:mkdepend + " + +BUILD() +{ + make $jobArgs OBJ_DIR=objects +} + +INSTALL() +{ + mkdir $binDir + cp objects/hdialog $binDir +}