mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
58 lines
1.4 KiB
Bash
58 lines
1.4 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 entering 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.
|
|
|
|
Add applications and any other file as favorites that are displayed when \
|
|
launching the app.
|
|
|
|
It's recommended to set a key combo to start QuickLaunch with Haiku's \
|
|
Shortcuts preferences."
|
|
HOMEPAGE="https://codeberg.org/humdinger/quicklaunch"
|
|
COPYRIGHT="2010-2025 Humdinger"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="58b53c5f03da70b1cc1314eecf9724aaa8ffe36cdef3ef953d795729e82d41e5"
|
|
SOURCE_DIR="quicklaunch"
|
|
|
|
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()
|
|
{
|
|
mkdir -p $appsDir $docDir
|
|
cp -r documentation/* $docDir/
|
|
|
|
cp QuickLaunch $appsDir
|
|
addAppDeskbarSymlink $appsDir/QuickLaunch
|
|
}
|