2064ef71c9
Also: * Removed unused configure option * Moved 'fails_with_llvm' out of def install Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
425 B
Ruby
16 lines
425 B
Ruby
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'
|
|
|
|
fails_with_llvm
|
|
|
|
def install
|
|
ENV.deparallelize # Not parallel safe.
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|