blob: f7b891fbb5e0d9ceddd41f5ae56657114d0386ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | 
require 'formula'
class Gsl < Formula
  url 'http://ftpmirror.gnu.org/gsl/gsl-1.15.tar.gz'
  homepage 'http://www.gnu.org/software/gsl/'
  md5 '494ffefd90eef4ada678c306bab4030b'
  def options
    [["--universal", "Build a universal binary."]]
  end
  def install
    ENV.universal_binary if ARGV.build_universal?
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make" # A GNU tool which doesn't support just make install! Shameful!
    system "make install"
  end
end
  |