From e4438f6234f25a32cb46cc0cc7bc04b15de47563 Mon Sep 17 00:00:00 2001 From: Bach Nguyen Date: Sat, 26 Jan 2019 03:32:59 -0600 Subject: [PATCH] DebugMonitor [recipe] (#3417) --- .../debugmonitor-0.1.1~20181221.recipe | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 haiku-apps/debugmonitor/debugmonitor-0.1.1~20181221.recipe diff --git a/haiku-apps/debugmonitor/debugmonitor-0.1.1~20181221.recipe b/haiku-apps/debugmonitor/debugmonitor-0.1.1~20181221.recipe new file mode 100644 index 000000000..cc4bbb280 --- /dev/null +++ b/haiku-apps/debugmonitor/debugmonitor-0.1.1~20181221.recipe @@ -0,0 +1,50 @@ +SUMMARY="A tiny but useful software for debugging" +DESCRIPTION="DebugMonitor is a small but useful software that can improve \ +the reliability and maintainability of your code. This software comes with \ +a DebugMonitor and a DebugClient library. To use, simply include the client \ +library in your app's Makefile, rebuild your app, run DebugMonitor, and then \ +start up your app. The main window should be clickable, and once you do so, a \ +the DebugMonitor window will appear and should record actions performed." +HOMEPAGE="https://github.com/HaikuArchives/DebugMonitor" +COPYRIGHT="1999 Alister Lee" +LICENSE="MIT" +REVISION="1" +srcGitRev="10b9b52033ebf53c84d663d88d32eb115299d993" +SOURCE_URI="https://github.com/HaikuArchives/DebugMonitor/archive/$srcGitRev.tar.gz" +CHECKSUM_SHA256="cf3326ff118a4b6175c0aa7ecdb4fdf9e72496e0480aacd3a539fe107f126d92" +SOURCE_FILENAME="DebugMonitor-$portVersion-$srcGitRev.tar.gz" +SOURCE_DIR="DebugMonitor-$srcGitRev" + +ARCHITECTURES="x86_gcc2 x86_64" + +PROVIDES=" + DebugMonitor = $portVersion + app:DebugMonitor = $portVersion + " +REQUIRES=" + haiku + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:g++ + cmd:make + " + +BUILD() +{ + make -C DebugClient OBJ_DIR=objects + make -C DebugMonitor OBJ_DIR=objects + make -C Scribble OBJ_DIR=objects +} + +INSTALL() +{ + mkdir -p $appsDir/DebugMonitor/Examples + cp Scribble/objects/Scribble $appsDir/DebugMonitor/Examples + cp DebugMonitor/objects/DebugMonitor $appsDir/DebugMonitor + addAppDeskbarSymlink $appsDir/DebugMonitor/DebugMonitor +}