Files
haikuports/haiku-apps/quicklaunch/quicklaunch-1.4.recipe

59 lines
1.5 KiB
Bash

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="https://github.com/humdingerb/quicklaunch"
COPYRIGHT="2010-2019 Humdinger"
LICENSE="MIT"
REVISION="1"
srcGitRev="22b3d18cce177d57006a884788167eecaa43d74d"
SOURCE_URI="https://github.com/humdingerb/quicklaunch/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="bd2bb7eeaedc66c29426716080f3d83debc021e28998f85f7af7534cb38fc7aa"
SOURCE_DIR="quicklaunch-$srcGitRev"
ARCHITECTURES="all"
USER_SETTINGS_FILES="settings/QuickLaunch_settings"
PROVIDES="
quicklaunch = $portVersion
app:QuickLaunch = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
"
BUILD()
{
cd src
make $jobArgs
make bindcatalogs
}
INSTALL()
{
quicklaunchDir=$appsDir/QuickLaunch
mkdir -p $quicklaunchDir
cp -af QuickLaunch $quicklaunchDir
cp -af ReadMe.html $quicklaunchDir
cp -r images $quicklaunchDir
addAppDeskbarSymlink $quicklaunchDir/QuickLaunch
}