From 547211272ab2ae314c8dca40f819d61e1091b7d2 Mon Sep 17 00:00:00 2001 From: Humdinger Date: Sat, 17 May 2014 17:35:08 +0200 Subject: [PATCH] New recipe for QuickLaunch v0.9.7 --- .../quicklaunch/quicklaunch-0.9.7.recipe | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 haiku-apps/quicklaunch/quicklaunch-0.9.7.recipe diff --git a/haiku-apps/quicklaunch/quicklaunch-0.9.7.recipe b/haiku-apps/quicklaunch/quicklaunch-0.9.7.recipe new file mode 100644 index 000000000..46367d6ac --- /dev/null +++ b/haiku-apps/quicklaunch/quicklaunch-0.9.7.recipe @@ -0,0 +1,54 @@ +SUMMARY="A tool to quickly start any installed application" +DESCRIPTION=" +QuickLaunch is a small launcher tool that helps you to quickly start any \ +installed application. Simply start to enter the name of an application and \ +QuickLaunch will find all programs matching these initial letters and show \ +them in a list. You choose an app from that list with the CursorUp/Down keys \ +and launch it by hitting Return. Escape quits QuickLaunch. +" +HOMEPAGE="http://sourceforge.net/projects/quicklaunch-h/" +SRC_URI="git://git.code.sf.net/p/quicklaunch-h/code#cc905c63a50c1e007bcd516312f833766afe393e" +LICENSE="MIT" +COPYRIGHT="2014 Humdinger" +REVISION="1" +ARCHITECTURES="x86_gcc2 x86" + +PROVIDES=" + quicklaunch = $portVersion + app:quicklaunch = $portVersion + " +REQUIRES=" + haiku >= r1~alpha4_pm_hrev46536-1 + " +BUILD_REQUIRES=" + haiku_devel >= r1~alpha4_pm_hrev46536-1 + " +BUILD_PREREQUIRES=" + makefile_engine + cmd:gcc + cmd:make + cmd:mkdepend + " + +USER_SETTINGS_FILES="settings/QuickLaunch_settings" + +BUILD() +{ + make $jobArgs +} + +INSTALL() +{ + quicklaunchDir=$appsDir/QuickLaunch + mkdir -p $quicklaunchDir + + ARCH=$(echo $buildArchitecture | sed 's/_/-/g') + cp -af objects.$ARCH-release/QuickLaunch $quicklaunchDir + cp -af ReadMe.html $quicklaunchDir + cp -r images $quicklaunchDir + + chmod +x Add\ to\ Deskbar.sh + cp -af Add\ to\ Deskbar.sh $quicklaunchDir + + addAppDeskbarSymlink $quicklaunchDir/QuickLaunch +}