homebrew-core/Formula/syck.rb

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