106 lines
3.6 KiB
Ruby
106 lines
3.6 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.2.1.tar.gz"
|
|
mirror "https://ftpmirror.gnu.org/octave/octave-4.2.1.tar.gz"
|
|
sha256 "80c28f6398576b50faca0e602defb9598d6f7308b0903724442c2a35a605333b"
|
|
revision 6
|
|
|
|
bottle do
|
|
sha256 "ba5f123341350e8ad3b892fa5d4090b84f6994bd86aa94606c79411bf81e945e" => :sierra
|
|
sha256 "056dad8f21144e358fce42985aa39342fa15ef1953fafe52dc62ef69be27855b" => :el_capitan
|
|
sha256 "dad40dc38179e025d4d597f3d15ec1388e4fe0900726cf4fcea49d0694040810" => :yosemite
|
|
end
|
|
|
|
head do
|
|
url "https://hg.savannah.gnu.org/hgweb/octave", :branch => "default", :using => :hg
|
|
depends_on :hg => :build
|
|
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 "pkg-config" => :build
|
|
depends_on :fortran
|
|
depends_on "arpack"
|
|
depends_on "epstool"
|
|
depends_on "fftw"
|
|
depends_on "fig2dev"
|
|
depends_on "fltk"
|
|
depends_on "fontconfig"
|
|
depends_on "freetype"
|
|
depends_on "ghostscript"
|
|
depends_on "gl2ps"
|
|
depends_on "glpk"
|
|
depends_on "gnuplot"
|
|
depends_on "graphicsmagick"
|
|
depends_on "hdf5"
|
|
depends_on "libsndfile"
|
|
depends_on "libtool" => :run
|
|
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"
|
|
depends_on :java => ["1.6+", :optional]
|
|
|
|
# Dependencies use Fortran, leading to spurious messages about GCC
|
|
cxxstdlib_check :skip
|
|
|
|
def install
|
|
if build.stable?
|
|
# Remove for > 4.2.1
|
|
# Remove inline keyword on file_stat destructor which breaks macOS
|
|
# compilation (bug #50234).
|
|
# Upstream commit from 24 Feb 2017 https://hg.savannah.gnu.org/hgweb/octave/rev/a6e4157694ef
|
|
inreplace "liboctave/system/file-stat.cc",
|
|
"inline file_stat::~file_stat () { }", "file_stat::~file_stat () { }"
|
|
end
|
|
|
|
# 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)%/, '""'
|
|
|
|
args = %W[
|
|
--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
|
|
]
|
|
|
|
args << "--disable-java" if build.without? "java"
|
|
|
|
system "./bootstrap" if build.head?
|
|
system "./configure", *args
|
|
system "make", "all"
|
|
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;" if build.with? "java"
|
|
end
|
|
end
|