Files
haikuports/haiku-apps/dockbert/dockbert-1.0.2b1.recipe
Humdinger 37a325ad49 Improved DockBert recipe.
As Diver pointed out correctly, the $secondaryArchSuffix isn't needed.
Improved SUMMARY/DESCRIPTION.
2015-10-14 10:52:22 +02:00

46 lines
1.1 KiB
Bash

SUMMARY="A dock-like Deskbar alternative"
DESCRIPTION="DockBert is a modified Deskbar. It adds a dock to your \
desktop where you may have shortcuts organized in \"tabs\", a tab of the \
running apps and some other general eye-candy."
HOMEPAGE="https://github.com/HaikuArchives/DockBert"
COPYRIGHT="2005 yellowTAB GmbH"
LICENSE="BSD (3-clause)"
REVISION="5"
SOURCE_URI="https://github.com/HaikuArchives/DockBert/archive/722161cf8646b18eee2d00208fa649a0ebfe8d00.zip"
CHECKSUM_SHA256="c4c4f2231fbb1f53880074137742a4145ae0027e3dc949617a9b9d95e4da39ae"
SOURCE_DIR="DockBert-722161cf8646b18eee2d00208fa649a0ebfe8d00"
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
dockbert = $portVersion
app:DockBert = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
"
BUILD()
{
cd source
make OBJ_DIR=objects \
BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY`
}
INSTALL()
{
mkdir -p $appsDir
cp -a source/objects/Dock $appsDir/DockBert
addAppDeskbarSymlink $appsDir/DockBert
}