homebrew-core/Formula/syck.rb
André Rigollet 2064ef71c9 syck: add ENV.deparallelize
Also:
* Removed unused configure option
* Moved 'fails_with_llvm' out of def install

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-04-18 13:22:04 -07:00

16 lines
425 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
def install
ENV.deparallelize # Not parallel safe.
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end