homebrew-core/Formula/syck.rb

14 lines
374 B
Ruby
Raw Normal View History

2010-01-31 07:25:51 +00:00
require 'formula'
class Syck <Formula
url 'http://cloud.github.com/downloads/indeyets/syck/syck-0.70.tar.gz'
homepage 'http://wiki.github.com/indeyets/syck/'
md5 '198f925b4ed7fe04a182c35014498634'
def install
fails_with_llvm
2010-01-31 07:25:51 +00:00
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end