aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/yaml-cpp.rb
blob: b92a60e4c6d065b63e07684b1e99b507abba7916 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class YamlCpp < Formula
  homepage 'http://code.google.com/p/yaml-cpp/'
  url 'http://yaml-cpp.googlecode.com/files/yaml-cpp-0.5.0.tar.gz'
  sha1 '575ece77122bffc392e6e9bc7389a1efcdb6bc97'

  depends_on 'cmake' => :build

  def install
    system "cmake", ".", *std_cmake_args
    system "make install"
  end
end
a id='n57' href='#n57'>57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87