diff options
| author | Adam Vandenberg | 2011-03-21 13:02:58 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-21 13:07:15 -0700 |
| commit | 7728c8304ebed4975eac5265adea797acdbc4974 (patch) | |
| tree | 0cec3c746a0b705d46f08fdb752771f7fdf97d30 | |
| parent | c223bf0b7455fac9a636d96743bb8125c3f01b6f (diff) | |
| download | homebrew-7728c8304ebed4975eac5265adea797acdbc4974.tar.bz2 | |
octave: audit warnings
| -rw-r--r-- | Library/Formula/octave.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/octave.rb b/Library/Formula/octave.rb index a9e72cfec..d237827d7 100644 --- a/Library/Formula/octave.rb +++ b/Library/Formula/octave.rb @@ -12,13 +12,15 @@ def run_tests? ARGV.include? '--test' end -class Octave <Formula +class Octave < Formula url 'ftp://ftp.gnu.org/gnu/octave/octave-3.4.0.tar.bz2' homepage 'http://www.gnu.org/software/octave/index.html' sha1 '936a8fc962abd96e7568fb5909ec2a4d7997a1a8' # critical dependencies depends_on 'gnu-sed' => :build + depends_on 'texinfo' => :build # OS X's makeinfo won't work for this + depends_on 'fftw' # there is an incompatibility between gfortran and Apple's BLAS as of 10.6.6: # http://www.macresearch.org/lapackblas-fortran-106 @@ -26,7 +28,6 @@ class Octave <Formula depends_on 'dotwrp' # octave refuses to work with BSD readline, so it's either this or --disable-readline depends_on 'readline' - depends_on 'texinfo' => :build # OS X's makeinfo won't work for this # additional features depends_on 'suite-sparse' |
