libyaml formula

LibYAML is a YAML 1.1 parser and emitter written in C.
master
Alexander Solovyov 2009-09-28 22:16:15 +03:00 committed by Max Howell
parent 8ebf0faef3
commit 2a0717ad1b
1 changed files with 12 additions and 0 deletions

12
Formula/libyaml.rb Normal file
View File

@ -0,0 +1,12 @@
require 'brewkit'
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