Files
haikuports/haiku-apps/dockbert/dockbert-1.0.2b1.recipe
Humdinger 569173a0eb Fix DockBert recipe. Rename binary from Dock to DockBert.
Naming the binary different from the package doesn't make a whole
lot of sense.
2015-10-14 10:42:17 +02:00

46 lines
1.1 KiB
Bash

SUMMARY="A dock for the Deskbar"
DESCRIPTION="DockBert is a Deskbar modification. It adds a dock to your \
Deskbar here you may have shortcuts organized in \"tabs\", a tab of the \
running apps and some other general eyecandy."
HOMEPAGE="https://github.com/HaikuArchives/DockBert"
COPYRIGHT="2005 yellowTAB GmbH"
LICENSE="BSD (3-clause)"
REVISION="4"
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$secondaryArchSuffix = $portVersion
app:DockBert = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc$secondaryArchSuffix
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
}