homebrew-core/Formula/gsl.rb

28 lines
799 B
Ruby
Raw Normal View History

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/'
url 'http://ftpmirror.gnu.org/gsl/gsl-1.16.tar.gz'
mirror 'http://ftp.gnu.org/gnu/gsl/gsl-1.16.tar.gz'
sha1 '210af9366485f149140973700d90dc93a4b6213e'
2009-10-30 10:43:47 +00:00
2014-03-13 20:13:59 +00:00
bottle do
cellar :any
2014-10-22 01:39:09 +00:00
revision 1
sha1 "1fe8e32e25366b24b3de3d9ccbf7c72315fc482f" => :yosemite
sha1 "5763fbd3bde4d3866b44ea19f841b52b271dfc3b" => :mavericks
sha1 "fecff8034949f3b22782d21b3191826d40bb2e1e" => :mountain_lion
2014-03-13 20:13:59 +00:00
end
2012-08-10 04:55:01 +00:00
option :universal
2009-10-30 10:43:47 +00:00
def install
2012-08-10 04:55:01 +00:00
ENV.universal_binary if build.universal?
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