blob: d796b8753705a95bf767f9102c179dc3c655b2b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Gsl <Formula
url 'ftp://ftp.gnu.org/gnu/gsl/gsl-1.14.tar.gz'
homepage 'http://www.gnu.org/software/gsl/'
md5 'd55e7b141815412a072a3f0e12442042'
aka 'gnu-scientific-library'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make" # A GNU tool which doesn't support just make install! Shameful!
system "make install"
end
end
|