aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/yaml-cpp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/yaml-cpp.rb')
-rw-r--r--Library/Formula/yaml-cpp.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/yaml-cpp.rb b/Library/Formula/yaml-cpp.rb
index 0d823861f..5280dc74f 100644
--- a/Library/Formula/yaml-cpp.rb
+++ b/Library/Formula/yaml-cpp.rb
@@ -1,15 +1,15 @@
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/'
+ url 'http://yaml-cpp.googlecode.com/files/yaml-cpp-0.3.0.tar.gz'
sha1 '28766efa95f1b0f697c4b4a1580a9972be7c9c41'
depends_on 'cmake' => :build
depends_on 'libyaml'
def install
- system "cmake . #{std_cmake_parameters}"
+ system "cmake #{std_cmake_parameters} ."
system "make install"
end
end