syck 0.70 - a YAML parser

master
Adam Vandenberg 2010-01-30 23:25:51 -08:00
parent 7278ab0da0
commit 117ebc047d
1 changed files with 13 additions and 0 deletions

13
Formula/syck.rb Normal file
View File

@ -0,0 +1,13 @@
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
ENV.gcc_4_2
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end