aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libyaml.rb
blob: 5d86649df59f867af52a15afd3ee75d2dc4708b8 (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.3.tar.gz'
  homepage 'http://pyyaml.org/wiki/LibYAML'
  md5 'b8ab9064e8e0330423fe640de76608cd'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end