2011-10-06 19:08:30 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Armadillo < Formula
|
|
|
|
homepage 'http://arma.sourceforge.net/'
|
2012-02-22 05:13:44 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/arma/armadillo-2.4.3.tar.gz'
|
|
|
|
md5 'b237a869ca4535a45ac420853f779c77'
|
2011-10-06 19:08:30 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'boost'
|
|
|
|
|
|
|
|
def install
|
2012-02-22 05:13:44 +00:00
|
|
|
system "cmake #{std_cmake_parameters} ."
|
2011-10-06 19:08:30 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|