Files
haikuports/haiku-apps/quicklaunch/quicklaunch-0.9.6.recipe
2013-10-29 14:58:00 -06:00

56 lines
1.3 KiB
Plaintext

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#c88a50516f3154b86efb4ae58ac8daaa3e45f675"
LICENSE="MIT"
COPYRIGHT="2013 Humdinger"
REVISION="1"
ARCHITECTURES="x86_gcc2 ?x86"
PROVIDES="
quicklaunch = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_REQUIRES="
makefile_engine
"
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
cmd:gcc
cmd:ld
cmd:make
cmd:mkdepend
cmd:unzip
cmd:xres
"
SOURCE_DIR="$portVersionedName"
BUILD()
{
make OBJ_DIR=objects BUILDHOME=/boot/system/develop
}
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
}