New recipe for QuickLaunch 0.9.12

This commit is contained in:
Humdinger
2015-09-03 19:19:08 +02:00
parent 82d0a570cd
commit 5676d46cd9

View File

@@ -0,0 +1,57 @@
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 (as long as it has an app-signature). 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. ESC quits QuickLaunch.
It's recommended to set a key combo to start QuickLaunch with Haiku's \
Shortcuts preferences."
HOMEPAGE="http://humdingerb.github.io/quicklaunch/"
COPYRIGHT="2010-2015 Humdinger"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="git://github.com/humdingerb/quicklaunch.git#5153fa3616fa2e59bf064cde35061b2049d4b953"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
quicklaunch = $portVersion
app:QuickLaunch = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
"
USER_SETTINGS_FILES="settings/QuickLaunch_settings"
BUILD()
{
make $jobArgs OBJ_DIR=objects
make bindcatalogs OBJ_DIR=objects
}
INSTALL()
{
quicklaunchDir=$appsDir/QuickLaunch
mkdir -p $quicklaunchDir
cp -af objects/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
}