homebrew-core/Formula/mosh.rb

22 lines
462 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Mosh < Formula
homepage 'http://mosh.monaos.org'
2012-05-28 18:25:08 +00:00
url 'http://mosh-scheme.googlecode.com/files/mosh-0.2.7.tar.gz'
md5 '268598897536ff352296a905879940ad'
depends_on 'gmp'
depends_on 'oniguruma'
fails_with :llvm do
cause "Inline asm errors"
end
2011-03-21 21:24:22 +00:00
def install
2012-05-28 18:25:08 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end