homebrew-core/Formula/yaml-cpp.rb
2012-02-09 18:56:25 -08:00

15 lines
359 B
Ruby

require 'formula'
class YamlCpp < Formula
url 'http://yaml-cpp.googlecode.com/files/yaml-cpp-0.3.0.tar.gz'
homepage 'http://code.google.com/p/yaml-cpp/'
sha1 '28766efa95f1b0f697c4b4a1580a9972be7c9c41'
depends_on 'cmake' => :build
depends_on 'libyaml'
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end