Add recipe for LnLauncher.

This commit is contained in:
Adrien Destugues
2014-10-30 18:12:16 +01:00
parent 7334fb615b
commit 0872b7b0d1

View File

@@ -0,0 +1,50 @@
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! \
This means it won't work on R5, so use the old versions for that."
LICENSE="MIT"
COPYRIGHT="2000-2014 Mikael Eiman"
HOMEPAGE="http://einman.tv/LnLauncher"
REVISION="1"
ARCHITECTURES="x86_gcc2"
SRC_URI="http://eiman.tv/LnLauncher/LnLauncher-1.1.2-haiku.zip"
CHECKSUM_SHA256="618e57837f00d9f03560382a3fe38f77770d625ccdc7ba5943d677ec63caa0f8"
SOURCE_DIR=""
PROVIDES="
lnlauncher = $portVersion
app:LnLauncher
"
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
cmd:gcc
cmd:jam
cmd:unzip
"
BUILD()
{
unzip source.zip
cd source
jam $jobArgs
}
INSTALL()
{
mkdir -p $appsDir
mkdir -p $dataDir
cp -r source/locale $dataDir
cp source/source/LnLauncher $appsDir
addAppDeskbarSymlink $appsDir/LnLauncher LnLauncher
}