aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Miklautz2012-01-17 23:37:09 +0100
committerAdam Vandenberg2012-03-15 17:52:24 -0700
commitfba3ebcf2e5443dcf86de11db59f3c2ead45b352 (patch)
tree9c54c6763c419f54d077fdd02b60cd340bf2048e
parent2a0d965327a67c3314cf0434d34aef0f41821333 (diff)
downloadhomebrew-fba3ebcf2e5443dcf86de11db59f3c2ead45b352.tar.bz2
freerdp 1.0.0
FreeRDP is a free implementation of the Remote Desktop Protocol (RDP). Version 1.0.0 is complete rewrite and has a lot of new features. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/freerdp.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/freerdp.rb b/Library/Formula/freerdp.rb
new file mode 100644
index 000000000..2d98ab5a3
--- /dev/null
+++ b/Library/Formula/freerdp.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Freerdp < Formula
+ homepage 'http://www.freerdp.com/'
+ url 'https://github.com/FreeRDP/FreeRDP/tarball/1.0.0'
+ md5 '53b0a12c367b9b3a8dbe60e7fa0f88e9'
+ head 'git://github.com/FreeRDP/FreeRDP.git'
+
+ depends_on 'cmake' => :build
+ depends_on 'pkg-config' => :build
+
+ def install
+ system "cmake . #{std_cmake_parameters}"
+ system "make install"
+ end
+end