1 SUMMARY="A tool to quickly start any installed application"
2DESCRIPTION="QuickLaunch is a small launcher tool that helps you to quickly \
3start any installed application (as long as it has an app-signature). Simply \
4start to enter the name of an application and QuickLaunch will find all \
5programs matching these initial letters and show them in a list.
6You choose an app from that list with the CursorUp/Down keys and launch it \
7by hitting RETURN. ESC quits QuickLaunch.
8
9It's recommended to set a key combo to start QuickLaunch with Haiku's \
10Shortcuts preferences."
11HOMEPAGE="https://github.com/humdingerb/quicklaunch"
12COPYRIGHT="2010-2019 Humdinger"
13LICENSE="MIT"
14REVISION="1"
15srcGitRev="22b3d18cce177d57006a884788167eecaa43d74d"
16SOURCE_URI="https://github.com/humdingerb/quicklaunch/archive/$srcGitRev.tar.gz"
17CHECKSUM_SHA256="bd2bb7eeaedc66c29426716080f3d83debc021e28998f85f7af7534cb38fc7aa"
18SOURCE_DIR="quicklaunch-$srcGitRev"
19
20ARCHITECTURES="all"
21
22USER_SETTINGS_FILES="settings/QuickLaunch_settings"
23
24PROVIDES="
25	quicklaunch = $portVersion
26	app:QuickLaunch = $portVersion
27	"
28REQUIRES="
29	haiku
30	"
31
32BUILD_REQUIRES="
33	haiku_devel
34	"
35BUILD_PREREQUIRES="
36	makefile_engine
37	cmd:g++
38	cmd:make
39	"
40
41BUILD()
42{
43	cd src
44	make $jobArgs
45	make bindcatalogs
46}
47
48INSTALL()
49{
50	quicklaunchDir=$appsDir/QuickLaunch
51	mkdir -p $quicklaunchDir
52
53	cp -af QuickLaunch $quicklaunchDir
54	cp -af ReadMe.html $quicklaunchDir
55	cp -r images $quicklaunchDir
56
57	addAppDeskbarSymlink $quicklaunchDir/QuickLaunch
58}
59