aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-21 21:13:44 -0800
committerAdam Vandenberg2012-02-21 21:13:44 -0800
commit5507978959816666c54c5d404bd2e22487998f84 (patch)
tree41f93db933e9ce0d56c4ae0f22e231d4c3ea8ee1 /Library/Formula
parent4eb8b1924f6ddf2d5658c108a2d23a79e2fa5b8f (diff)
downloadhomebrew-5507978959816666c54c5d404bd2e22487998f84.tar.bz2
armadillo 2.4.3
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/armadillo.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/armadillo.rb b/Library/Formula/armadillo.rb
index a7220c4f8..b8c3e2773 100644
--- a/Library/Formula/armadillo.rb
+++ b/Library/Formula/armadillo.rb
@@ -1,16 +1,15 @@
require 'formula'
class Armadillo < Formula
- url 'http://downloads.sourceforge.net/project/arma/armadillo-2.4.2.tar.gz'
homepage 'http://arma.sourceforge.net/'
- md5 '9b5c255a24ca6c2fe507797b9bad5d2e'
+ url 'http://downloads.sourceforge.net/project/arma/armadillo-2.4.3.tar.gz'
+ md5 'b237a869ca4535a45ac420853f779c77'
depends_on 'cmake' => :build
depends_on 'boost'
def install
- system "cmake . #{std_cmake_parameters}"
+ system "cmake #{std_cmake_parameters} ."
system "make install"
end
-
end