From bf19e07f6f94573535fa24cc9b7b54c8e442ef12 Mon Sep 17 00:00:00 2001 From: Chirayu Desai Date: Sat, 10 Jan 2015 18:16:42 +0000 Subject: [PATCH] Add a Haiku app, PonpokoDiff --- .../ponpokodiff/ponpokodiff-0.2.0.recipe | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 haiku-apps/ponpokodiff/ponpokodiff-0.2.0.recipe diff --git a/haiku-apps/ponpokodiff/ponpokodiff-0.2.0.recipe b/haiku-apps/ponpokodiff/ponpokodiff-0.2.0.recipe new file mode 100644 index 000000000..ab87b14b5 --- /dev/null +++ b/haiku-apps/ponpokodiff/ponpokodiff-0.2.0.recipe @@ -0,0 +1,44 @@ +SUMMARY="A GUI-based diff application" +DESCRIPTION=" +PonpokoDiff is a graphical file comparison utility. \ +It can compare two files and show its differences graphically. \ +Currently, the comparison of folders is not supported. \ +You can also use it as an extenal diff command of Subversion (--diff-cmd). +" + +HOMEPAGE="https://code.google.com/p/ponpokodiff/" +SRC_URI="git+https://github.com/HaikuArchives/PonpokoDiff#f68f59d8f359ddbaeec89e2c8a72da93142c139d" +REVISION="1" +LICENSE="MIT" +COPYRIGHT="2008 PonpokoDiff Project Contributors" + +ARCHITECTURES="x86_gcc2 ?x86 ?x86_64" + +PROVIDES=" + ponpokodiff = $portVersion + app:ponpokodiff = $portVersion + " +REQUIRES=" + haiku + " +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:make + cmd:gcc + cmd:mkdepend + " + +BUILD() +{ + make $jobArgs OBJ_DIR=objects +} + +INSTALL() +{ + mkdir -p $appsDir + cp -a objects/PonpokoDiff $appsDir + addAppDeskbarSymlink $appsDir/PonpokoDiff +}