homebrew-core/Formula/syck.rb
Jack Nagel 89b2018d80 Update bare fails_with_llvm calls
These formulae all compile and run with LLVM build >= 2335.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-10-28 15:52:44 -05:00

16 lines
440 B
Ruby

require 'formula'
class Syck < Formula
url 'http://cloud.github.com/downloads/indeyets/syck/syck-0.70.tar.gz'
homepage 'https://wiki.github.com/indeyets/syck/'
md5 '198f925b4ed7fe04a182c35014498634'
fails_with_llvm :build => 2334
def install
ENV.deparallelize # Not parallel safe.
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end