966bef4306
mosh fails to build with llvm-gcc. The original formula forced an ENV.GCC_4_2, which broke under Xcode 4.2. Replace with fails_with_llvm. It does build correctly with clang. Closes Homebrew/homebrew#8336. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
19 lines
461 B
Ruby
19 lines
461 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 "Inline asm errors"
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|