aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/yaml-cpp.rb
blob: 76d06993e2fdc129e3ed511e6c73242aed3629d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class YamlCpp <Formula
  url 'http://yaml-cpp.googlecode.com/files/yaml-cpp-0.2.5.tar.gz'
  homepage 'http://code.google.com/p/yaml-cpp/'
  md5 'b17dc36055cd2259c88b2602601415d9'

  depends_on 'cmake'
  depends_on 'libyaml'

  def install

    # Fix for building on 10.6
    # See: http://code.google.com/p/yaml-cpp/issues/detail?id=68 (Fixed in revision r363)
    inreplace 'src/token.h', '<ios>', '<iostream>'

    system "cmake . #{std_cmake_parameters}"
    system "make install"
  end
end