homebrew-core/Formula/freerdp.rb
Bernhard Miklautz 9f3a3a17fa 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>
2012-03-15 17:52:24 -07:00

16 lines
388 B
Ruby

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