homebrew-core/Formula/yaml-cpp.rb
Jesse Beder fcfb1e9d85 yaml-cpp: remove libyaml dep
yaml-cpp does not require libyaml, so it shouldnt be specified as a
dependency.

Closes Homebrew/homebrew#12590.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-06-04 19:27:31 -05:00

14 lines
332 B
Ruby

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