Files
haikuports/haiku-apps/lnlauncher/lnlauncher-1.1.2.recipe

61 lines
1.3 KiB
Bash

SUMMARY="Yet another launcher app"
DESCRIPTION="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 \
the tiny handle.
Various localization files can be downloaded from the homepage, and if you \
want to add your own just mail it to me and I'll put it up with the rest!
The latest version, 1.1.2, was adapted for Haiku by Daniel Weber - thank you!"
LICENSE="MIT"
COPYRIGHT="2000-2015 Mikael Eiman"
HOMEPAGE="http://eiman.tv/LnLauncher"
REVISION="5"
ARCHITECTURES="x86_gcc2"
SOURCE_URI="git+https://bitbucket.org/m_eiman/lnlauncher/commits/c74acd4"
PATCHES="lnlauncher-$portVersion.patchset"
PROVIDES="
lnlauncher = $portVersion
app:LnLauncher
"
BUILD_REQUIRES="
haiku_devel
makefile_engine
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
"
BUILD()
{
make $jobArgs OBJ_DIR=objects
make OBJ_DIR=objects bindcatalogs
}
INSTALL()
{
mkdir -p $appsDir $dataDir/user_launch
cp objects/LnLauncher $appsDir
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
}