0
0
Fork 0
haikuports/haiku-apps/remotecontrol/remotecontrol-1.1.recipe

56 lines
1.5 KiB
Bash
Raw Permalink Normal View History

2013-12-26 20:57:50 +00:00
SUMMARY="Remote control your Haiku machines with ease!"
DESCRIPTION="
2014-01-02 21:40:57 +00:00
With the Remote Control app, you can control another Haiku computer also \
running the Remote Control app, no matter where it is. The app is able to just \
view what's on the screen, or also control the computer. This package contains \
2016-02-26 15:33:51 +00:00
the RCClient client and RCServer server. Both are to be run in the terminal."
2013-12-27 19:05:34 +00:00
HOMEPAGE="http://thomas.thiriez.free.fr/beos/RemoteControl/index.html"
2013-12-26 20:57:50 +00:00
COPYRIGHT="2001 Thomas Thiriez"
2016-02-17 19:26:37 +00:00
LICENSE="RemoteControl Unknown"
REVISION="4"
2017-02-08 21:00:01 +00:00
srcGitRev="275a5e5f9ea9baa57e54c39d6ac55ea088fbc18d"
SOURCE_URI="https://github.com/HaikuArchives/RemoteControl/archive/$srcGitRev.tar.gz"
2017-02-08 21:00:01 +00:00
CHECKSUM_SHA256="fb6fe1a3f12381de29dcab1e17658b4dca641a06b01653c5b74b70f119141a86"
SOURCE_DIR="RemoteControl-$srcGitRev"
2013-12-26 20:57:50 +00:00
ARCHITECTURES="all"
2013-12-26 20:57:50 +00:00
PROVIDES="
remotecontrol = $portVersion
addon:rcinputdevice = $portVersion
2018-08-09 09:26:07 +00:00
addon:rcinputfilter = $portVersion
cmd:rcclient = $portVersion
cmd:rcserver = $portVersion
2013-12-26 20:57:50 +00:00
"
REQUIRES="
haiku
2013-12-26 20:57:50 +00:00
"
2016-02-17 19:26:37 +00:00
BUILD_REQUIRES="
haiku_devel
"
2013-12-26 20:57:50 +00:00
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
2018-08-09 09:26:07 +00:00
cmd:xres
2013-12-26 20:57:50 +00:00
"
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
}