Add RemoteControl recipe

This commit is contained in:
Puck Meerburg
2013-12-26 20:57:50 +00:00
parent 3233f6ae53
commit f50ad9c9af
2 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1 @@
The license is nowhere noted, but on BeBits and HaikuWare it says the license is Freeware.

View File

@@ -0,0 +1,54 @@
SUMMARY="Remote control your Haiku machines with ease!"
DESCRIPTION="
RemoteControl is an application that allows the user
to control a remote PC as if he was seating in front of it.
It can be useful if you have a PC with no screen,
keyboard or mouse connected, or simply if it is too far away.
"
HOMEPAGE="https://github.com/HaikuArchives/RemoteControl"
SRC_URI="git://github.com/HaikuArchives/RemoteControl#c59e89e3643e4693a75e5b5456596533d068cc29"
REVISION="1"
LICENSE="Unknown"
COPYRIGHT="2001 Thomas Thiriez"
ARCHITECTURES="x86 x86_gcc2"
PROVIDES="
remotecontrol = $portVersion
cmd:rcserver = $portVersion
cmd:rcclient = $portVersion
addon:rcinputfilter = $portVersion
addon:rcinputdevice = $portVersion
"
REQUIRES="
haiku >= $haikuVersion
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:xres
cmd:make
cmd:mkdepend
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
"
BUILD()
{
cd sources
make -C RCClient
make -C RCInputDevice
make -C RCInputFilter
make -C RCServer
}
INSTALL()
{
cd sources
make -C RCClient install INSTALL_DIR=$binDir
make -C RCServer install INSTALL_DIR=$binDir
make -C RCInputDevice install INSTALL_DIR=$addOnsDir/input_server/devices
make -C RCInputFilter install INSTALL_DIR=$addOnsDir/input_server/filters
}