mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 22:48:55 +02:00
47 lines
1.1 KiB
Bash
47 lines
1.1 KiB
Bash
SUMMARY="Deskbar is watching you!"
|
|
DESCRIPTION="DeskbarEyes is a Desktop applet that puts a pair of eyes in your deskbar that follow your cursor."
|
|
HOMEPAGE="https://github.com/HaikuArchives/DeskbarEyes"
|
|
COPYRIGHT="2005 Peter Stegemann, Richard & Mark Erben"
|
|
LICENSE="deskbareyes"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/HaikuArchives/DeskbarEyes/archive/$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="8a9af62035203c7470cabdae1965adc69dc7b0d90058a410af99d0484b8ad509"
|
|
SOURCE_FILENAME="DeskbarEyes-$portVersion.tar.gz"
|
|
SOURCE_DIR="DeskbarEyes-$portVersion"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86_64"
|
|
|
|
PROVIDES="
|
|
deskbareyes = $portVersion
|
|
app:DeskbarEyes = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:g++
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir/DeskbarEyes/Images
|
|
cp Images/* $appsDir/DeskbarEyes/Images
|
|
cp DeskbarEyes $appsDir/DeskbarEyes
|
|
mimeset -f $appsDir/DeskbarEyes/DeskbarEyes
|
|
|
|
# Add a symlink to the Desktop applets directory in Deskbar
|
|
desktopAppletsDir="$dataDir/deskbar/menu/Desktop applets"
|
|
mkdir -p "$desktopAppletsDir"
|
|
ln -s $appsDir/DeskbarEyes/DeskbarEyes "$desktopAppletsDir"
|
|
}
|