homebrew-core/Formula/syck.rb

17 lines
425 B
Ruby
Raw Normal View History

2010-01-31 07:25:51 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Syck < Formula
2010-01-31 07:25:51 +00:00
url 'http://cloud.github.com/downloads/indeyets/syck/syck-0.70.tar.gz'
homepage 'https://wiki.github.com/indeyets/syck/'
2010-01-31 07:25:51 +00:00
md5 '198f925b4ed7fe04a182c35014498634'
2011-03-21 21:24:22 +00:00
fails_with_llvm
2010-01-31 07:25:51 +00:00
def install
ENV.deparallelize # Not parallel safe.
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
2010-01-31 07:25:51 +00:00
system "make install"
end
end