0
0
Fork 0
haikuports/haiku-apps/lnlauncher/lnlauncher-1.1.2.recipe

61 lines
1.3 KiB
Bash
Raw Permalink Normal View History

2016-09-01 16:51:29 +00:00
SUMMARY="A tool to launch applications"
DESCRIPTION="LnLauncher is yet another launcher app. This one docks to the \
screen edge, and has a neat drag'n'drop interface.
When minimized, the app shouldn't get in your way, the only thing you see is \
2014-10-30 17:12:16 +00:00
the tiny handle.
2015-08-18 12:40:33 +00:00
The latest version, 1.1.2, was adapted for Haiku by Daniel Weber - thank you!"
HOMEPAGE="http://eiman.tv/LnLauncher"
2016-09-01 16:51:29 +00:00
COPYRIGHT="2000-2015 Mikael Eiman"
LICENSE="MIT"
REVISION="7"
2018-08-14 07:17:46 +00:00
srcGitRev="ddd60a641c31"
SOURCE_URI="https://bitbucket.org/m_eiman/lnlauncher/get/$srcGitRev.zip"
CHECKSUM_SHA256="9b8f1452a2f22a916954e6954e775cb4593b380e33ddf2bd3a3c3fd1d9a37cf6"
2018-08-14 07:17:46 +00:00
SOURCE_DIR="m_eiman-lnlauncher-$srcGitRev"
2014-10-30 17:12:16 +00:00
ARCHITECTURES="all"
2016-09-01 16:51:29 +00:00
2014-10-30 17:12:16 +00:00
PROVIDES="
lnlauncher = $portVersion
app:LnLauncher
"
2016-09-01 16:51:29 +00:00
REQUIRES="
haiku
"
2015-08-18 12:40:33 +00:00
BUILD_REQUIRES="
haiku_devel
2015-08-18 12:40:33 +00:00
"
BUILD_PREREQUIRES="
2016-09-01 16:51:29 +00:00
makefile_engine
2014-10-30 17:12:16 +00:00
cmd:gcc
2015-08-18 12:40:33 +00:00
cmd:make
"
2014-10-30 17:12:16 +00:00
BUILD()
{
2015-08-18 12:40:33 +00:00
make $jobArgs OBJ_DIR=objects
make OBJ_DIR=objects bindcatalogs
2014-10-30 17:12:16 +00:00
}
INSTALL()
{
2015-08-18 12:40:33 +00:00
mkdir -p $appsDir $dataDir/user_launch
cp objects/LnLauncher $appsDir
2014-10-30 17:12:16 +00:00
addAppDeskbarSymlink $appsDir/LnLauncher LnLauncher
echo "target desktop {
service x-vnd.LnLauncher {
launch /system/apps/LnLauncher
if setting ~/config/settings/LnLauncher/Settings autostart
no_safemode
legacy
on {
initial_volumes_mounted
}
}
}
" > $dataDir/user_launch/LnLauncher
}