mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
Removed the full-stop and repeating package name in SUMMARY. Removed hard line breaks, broke up some very long paragraphs and use bullet lists where possible. All done by browsing through HaikuDepot. There may be (many) more left in the whole haikuports repo... Included 10 extended desriptions done by soyoye14 for GCI 2014 (https://www.google-melange.com/gci/task/view/google/gci2014/5240373098053632) Removed/insert whitespace where it seems to be the custom in recipes. Sometimes rearranged elements of a recipe (moving license and copyright up, for example).
50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
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-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
|
|
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
|
|
}
|