blob: b8c3e2773d8b0465dc565fff3f2bb2356b4391df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Armadillo < Formula
homepage 'http://arma.sourceforge.net/'
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 "make install"
end
end
|