blob: 2411d72b8ec2e0e0bb854b89ba89cbf30cacd2bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Sundials < Formula
  url 'https://computation.llnl.gov/casc/sundials/download/code/sundials-2.4.0.tar.gz'
  homepage 'https://computation.llnl.gov/casc/sundials/main.html'
  md5 '4dbe9b98e66cf7670f42ecb73bf8216e'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |