homebrew-core/Formula/mosh.rb
okuoku 4233cc3592 Mosh 0.2.7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-06-18 09:35:35 -07:00

21 lines
479 B
Ruby

require 'formula'
class Mosh < Formula
url 'http://mosh-scheme.googlecode.com/files/mosh-0.2.7.tar.gz'
homepage 'http://mosh.monaos.org'
md5 '268598897536ff352296a905879940ad'
depends_on 'gmp'
depends_on 'oniguruma'
fails_with_llvm
def install
ENV.gcc_4_2 # GCC > 4.0 required
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end