aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/syck.rb
blob: dd31854fa00cc0848d9e7285f85081a6d1b1cbf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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'

  def install
    fails_with_llvm
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end