hdialog: Add recipe for hdialog

This commit is contained in:
Josef Gajdusek
2014-11-26 13:19:10 +01:00
parent 1ae18806f5
commit 02ffe07eb8

View File

@@ -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
}