homebrew-core/Formula/syck.rb

19 lines
459 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
homepage 'https://wiki.github.com/indeyets/syck/'
2013-01-28 03:03:22 +00:00
url 'http://cloud.github.com/downloads/indeyets/syck/syck-0.70.tar.gz'
sha1 '30f89eba1fae0546ccfa75a9a3b865a3c8a9ac79'
2010-01-31 07:25:51 +00:00
fails_with :llvm do
build 2334
end
2011-03-21 21:24:22 +00:00
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