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-04-22 20:54:28 +00:00
|
|
|
url 'http://yaml-cpp.googlecode.com/files/yaml-cpp-0.5.1.tar.gz'
|
|
|
|
sha1 '9c5414b4090491e96d1b808fe8628b31e625fdaa'
|
2011-01-02 09:55:56 +00:00
|
|
|
|
2011-11-30 02:54:32 +00:00
|
|
|
depends_on 'cmake' => :build
|
2013-02-20 21:05:52 +00:00
|
|
|
depends_on 'boost'
|
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
|