2009-10-30 10:43:47 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gsl < Formula
|
2012-08-10 04:55:01 +00:00
|
|
|
homepage 'http://www.gnu.org/software/gsl/'
|
2011-09-12 16:31:30 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/gsl/gsl-1.15.tar.gz'
|
2011-11-30 18:56:07 +00:00
|
|
|
mirror 'http://ftp.gnu.org/gnu/gsl/gsl-1.15.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'd914f84b39a5274b0a589d9b83a66f44cd17ca8e'
|
2009-10-30 10:43:47 +00:00
|
|
|
|
2012-08-10 04:55:01 +00:00
|
|
|
option :universal
|
2011-04-04 11:21:00 +00:00
|
|
|
|
2009-10-30 10:43:47 +00:00
|
|
|
def install
|
2012-08-10 04:55:01 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2011-04-04 11:21:00 +00:00
|
|
|
|
2012-08-10 04:55:01 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2009-10-30 10:43:47 +00:00
|
|
|
system "make" # A GNU tool which doesn't support just make install! Shameful!
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|