Update create_octave.sh

This commit is contained in:
Adam Parler 2024-01-31 05:58:20 +00:00
parent 15258d5855
commit 307b98418d

View file

@ -1 +1,12 @@
#!/bin/bash
OCTAVE_VERSION=8.4.0
wget -c https://mirrors.kernel.org/gnu/octave/octave-${OCTAVE_VERSION}.tar.gz
tar -xvf octave-${OCTAVE_VERSION}.tar.gz
cd octave-${OCTAVE_VERSION}
mkdir build && cd build
../configure --prefix=/opt/octave/${OCTAVE_VERSION} --enable-64 --enable-readline --with-blas --with-lapack --with-fftw3 --with-qt --with-magick
make
make check
make install