mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
50 lines
1.1 KiB
Bash
50 lines
1.1 KiB
Bash
SUMMARY="Automatic desktop color changer"
|
|
DESCRIPTION="
|
|
This program was inspired by the 'TaveDesktop' program by the Tave Software \
|
|
Group. I think that 'TaveDesktop' was a good idea, but I wanted to be able to \
|
|
choose my own colors, since the 'TaveDesktop' colors looks bad on an 8bpp \
|
|
display.
|
|
This program should be self-explanatory. You'll find a small Popup menu when \
|
|
clicking the small screen at the top-right corner of the window.
|
|
"
|
|
COPYRIGHT="1998-1999 Jean-Baptiste M. Queru"
|
|
LICENSE="GNU GPL v2"
|
|
HOMEPAGE="https://github.com/HaikuArchives/NightAndDay"
|
|
SOURCE_URI="git+git://github.com/HaikuArchives/NightAndDay.git#3bcc1a5a39"
|
|
REVISION="2"
|
|
|
|
ARCHITECTURES="x86_gcc2 !x86 !x86_64"
|
|
|
|
PROVIDES="
|
|
nightanddays = $portVersion
|
|
app:NightAndDay = $portVersion
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:gcc
|
|
cmd:ld
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd src
|
|
g++ -o NightAndDay nd.cpp -fno-pic -fomit-frame-pointer -ffast-math -Wall -W -Wno-multichar -Werror -D PI=3.141592 -lbe
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp src/NightAndDay $appsDir
|
|
mkdir -p $docDir
|
|
cp ReadMe $docDir
|
|
addAppDeskbarSymlink $appsDir/NightAndDay
|
|
}
|