mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
46 lines
1.0 KiB
Bash
46 lines
1.0 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="4"
|
|
COMMIT="ef9e1cc7325d8618de6e26fefa425806e390d363"
|
|
SOURCE_URI="https://github.com/HaikuArchives/DockBert/archive/$COMMIT.zip"
|
|
CHECKSUM_SHA256="dba345492cc80b534536dc8d6a1fbf5c01be7f51c611439e01d3104d91828f98"
|
|
SOURCE_DIR="DockBert-$COMMIT"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86_64"
|
|
|
|
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
|
|
}
|