homebrew-core/Formula/octave.rb
2018-05-05 05:25:09 -07:00

97 lines
3.7 KiB
Ruby

class Octave < Formula
desc "High-level interpreted language for numerical computing"
homepage "https://www.gnu.org/software/octave/index.html"
url "https://ftp.gnu.org/gnu/octave/octave-4.4.0.tar.gz"
mirror "https://ftpmirror.gnu.org/octave/octave-4.4.0.tar.gz"
sha256 "72f846379fcec7e813d46adcbacd069d72c4f4d8f6003bcd92c3513aafcd6e96"
bottle do
sha256 "749a05f276092a3d77357883465dccae17e6dc168dcff988437461a9d9013cca" => :high_sierra
sha256 "faa5410a85ffdf8d531d29ea6fb69c57ed3380fbc40e70a2ac0a6cc46976ac1e" => :sierra
sha256 "5fb1b5a0d43b07ed96bc2c4c529f8d82b04db8f632ffeebb42caee7518c2bc22" => :el_capitan
end
head do
url "https://hg.savannah.gnu.org/hgweb/octave", :branch => "default", :using => :hg
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "bison" => :build
depends_on "icoutils" => :build
depends_on "librsvg" => :build
depends_on "sundials"
end
# Complete list of dependencies at https://wiki.octave.org/Building
depends_on "gnu-sed" => :build # https://lists.gnu.org/archive/html/octave-maintainers/2016-09/msg00193.html
depends_on :java => ["1.6+", :build, :test]
depends_on "pkg-config" => :build
depends_on "arpack"
depends_on "epstool"
depends_on "fftw"
depends_on "fig2dev"
depends_on "fltk"
depends_on "fontconfig"
depends_on "freetype"
depends_on "gcc" # for gfortran
depends_on "ghostscript"
depends_on "gl2ps"
depends_on "glpk"
depends_on "gnuplot"
depends_on "graphicsmagick"
depends_on "hdf5"
depends_on "libsndfile"
depends_on "libtool"
depends_on "pcre"
depends_on "portaudio"
depends_on "pstoedit"
depends_on "qhull"
depends_on "qrupdate"
depends_on "readline"
depends_on "suite-sparse"
depends_on "veclibfort"
# Dependencies use Fortran, leading to spurious messages about GCC
cxxstdlib_check :skip
def install
# Default configuration passes all linker flags to mkoctfile, to be
# inserted into every oct/mex build. This is unnecessary and can cause
# cause linking problems.
inreplace "src/mkoctfile.in.cc", /%OCTAVE_CONF_OCT(AVE)?_LINK_(DEPS|OPTS)%/, '""'
system "./bootstrap" if build.head?
system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--enable-link-all-dependencies",
"--enable-shared",
"--disable-static",
"--disable-docs",
"--without-OSMesa",
"--without-qt",
"--with-hdf5-includedir=#{Formula["hdf5"].opt_include}",
"--with-hdf5-libdir=#{Formula["hdf5"].opt_lib}",
"--with-x=no",
"--with-blas=-L#{Formula["veclibfort"].opt_lib} -lvecLibFort",
"--with-portaudio",
"--with-sndfile"
system "make", "all"
# Avoid revision bumps whenever fftw's or gcc's Cellar paths change
inreplace "src/mkoctfile.cc" do |s|
s.gsub! Formula["fftw"].prefix.realpath, Formula["fftw"].opt_prefix
s.gsub! Formula["gcc"].prefix.realpath, Formula["gcc"].opt_prefix
end
system "make", "install"
end
test do
system bin/"octave", "--eval", "(22/7 - pi)/pi"
# This is supposed to crash octave if there is a problem with veclibfort
system bin/"octave", "--eval", "single ([1+i 2+i 3+i]) * single ([ 4+i ; 5+i ; 6+i])"
# Test java bindings: check if javaclasspath is working, return error if not
system bin/"octave", "--eval", "try; javaclasspath; catch; quit(1); end;"
end
end