homebrew-core/Formula/yaml-cpp.rb

16 lines
353 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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'
2011-11-30 02:54:32 +00:00
depends_on 'cmake' => :build
depends_on 'boost'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end