blob: 4dda35bc8cd521e8dc2eade502ef30273d8c2190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Libyaml < Formula
url 'http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz'
homepage 'http://pyyaml.org/wiki/LibYAML'
md5 '36c852831d02cf90508c29852361d01b'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|