homebrew-core/Formula/libyaml.rb

13 lines
287 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libyaml < Formula
url 'http://pyyaml.org/download/libyaml/yaml-0.1.3.tar.gz'
homepage 'http://pyyaml.org/wiki/LibYAML'
md5 'b8ab9064e8e0330423fe640de76608cd'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end