2011-01-02 09:55:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class YamlCpp < Formula
|
2011-01-02 09:55:56 +00:00
|
|
|
homepage 'http://code.google.com/p/yaml-cpp/'
|
2013-01-02 01:25:08 +00:00
|
|
|
url 'http://yaml-cpp.googlecode.com/files/yaml-cpp-0.5.0.tar.gz'
|
|
|
|
sha1 '575ece77122bffc392e6e9bc7389a1efcdb6bc97'
|
2011-01-02 09:55:56 +00:00
|
|
|
|
2011-11-30 02:54:32 +00:00
|
|
|
depends_on 'cmake' => :build
|
2011-01-02 09:55:56 +00:00
|
|
|
|
|
|
|
def install
|
2012-05-22 21:37:04 +00:00
|
|
|
system "cmake", ".", *std_cmake_args
|
2011-01-02 09:55:56 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|