rdesktop: style nits

This commit is contained in:
Adam Vandenberg 2013-01-27 21:29:14 -08:00
parent 84f716a279
commit edbe775cd1

View file

@ -1,14 +1,15 @@
require 'formula'
class Rdesktop < Formula
url 'http://downloads.sourceforge.net/project/rdesktop/rdesktop/1.7.1/rdesktop-1.7.1.tar.gz'
homepage 'http://www.rdesktop.org/'
url 'http://downloads.sourceforge.net/project/rdesktop/rdesktop/1.7.1/rdesktop-1.7.1.tar.gz'
sha1 'c718d0f49948a964c7ef8424b8ade73ecce3aba3'
depends_on :x11
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug"
system "./configure", "--disable-debug",
"--prefix=#{prefix}"
system "make install"
end
end