homebrew-core/Formula/rdesktop.rb

20 lines
575 B
Ruby
Raw Normal View History

2009-10-19 20:47:02 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Rdesktop < Formula
2009-10-19 20:47:02 +00:00
homepage 'http://www.rdesktop.org/'
url 'https://downloads.sourceforge.net/project/rdesktop/rdesktop/1.8.1/rdesktop-1.8.1.tar.gz'
2013-12-06 06:38:06 +00:00
sha1 '57bb41f98ddf9eeef875c613d790fee37971d0f8'
2009-10-19 20:47:02 +00:00
depends_on :x11
2009-10-19 20:47:02 +00:00
def install
args = ["--prefix=#{prefix}",
"--disable-credssp",
"--disable-smartcard", # disable temporally before upstream fix
"--with-openssl=#{MacOS.sdk_path}/usr",
"--x-includes=#{MacOS::X11.include}"]
system "./configure", *args
2009-10-19 20:47:02 +00:00
system "make install"
end
end