blob: d3aae54528021df859e39e5d55da371859325902 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class YamlCpp < Formula
  homepage 'http://code.google.com/p/yaml-cpp/'
  url 'http://yaml-cpp.googlecode.com/files/yaml-cpp-0.5.1.tar.gz'
  sha1 '9c5414b4090491e96d1b808fe8628b31e625fdaa'
  depends_on 'cmake' => :build
  depends_on 'boost'
  def install
    system "cmake", ".", *std_cmake_args
    system "make install"
  end
end
  |