2011-09-07 20:26:39 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Openmeeg < Formula
|
2012-02-16 13:25:54 +00:00
|
|
|
homepage 'http://www-sop.inria.fr/athena/software/OpenMEEG/'
|
|
|
|
url 'https://github.com/openmeeg/openmeeg/tarball/release-2.1'
|
|
|
|
md5 '47b2a5aa4fa5d806da8322859ee3b1d8'
|
2011-09-07 20:26:39 +00:00
|
|
|
|
2012-03-26 03:26:32 +00:00
|
|
|
head 'https://github.com/openmeeg/openmeeg.git'
|
2012-02-22 05:12:27 +00:00
|
|
|
|
2011-09-07 20:26:39 +00:00
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'hdf5'
|
|
|
|
|
|
|
|
def install
|
2012-02-16 13:25:54 +00:00
|
|
|
system "cmake #{std_cmake_parameters} -DUSE_PROGRESSBAR=ON ."
|
2011-09-07 20:26:39 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|