aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/shark.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-21 21:12:27 -0800
committerAdam Vandenberg2012-02-24 21:35:51 -0800
commit531a5765099c95f56c0455e0a4686b8952569105 (patch)
tree4e2802cb1e71f7af44e7e266fac678fb1a90b008 /Library/Formula/shark.rb
parent55f3c49a9e27d88fbfecc48d982bf0f31414f9a5 (diff)
downloadhomebrew-531a5765099c95f56c0455e0a4686b8952569105.tar.bz2
Put source path last in cmake args
Diffstat (limited to 'Library/Formula/shark.rb')
-rw-r--r--Library/Formula/shark.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/shark.rb b/Library/Formula/shark.rb
index 61f9c1f7d..3670775e8 100644
--- a/Library/Formula/shark.rb
+++ b/Library/Formula/shark.rb
@@ -1,14 +1,14 @@
require 'formula'
class Shark < Formula
- url 'http://downloads.sourceforge.net/project/shark-project/Shark%20Core/Shark%202.3.4/shark-2.3.4.zip'
homepage 'http://shark-project.sourceforge.net/'
+ url 'http://downloads.sourceforge.net/project/shark-project/Shark%20Core/Shark%202.3.4/shark-2.3.4.zip'
md5 '12d87a519c27b33800df11b7c78972ed'
depends_on 'cmake' => :build
def install
- system "cmake . #{std_cmake_parameters}"
+ system "cmake #{std_cmake_parameters} ."
system "make install"
end
end