desktop/octave/PKGBUILD
2016-03-29 08:40:52 +01:00

42 lines
1.2 KiB
Bash

pkgname=octave
pkgver=4.0.1
pkgrel=1
pkgdesc="A high-level language, primarily intended for numerical computations."
arch=('x86_64')
url="http://www.octave.org"
license=('GPL')
depends=('readline' 'glu' 'fftw' 'curl' 'graphicsmagick' 'glpk' 'hdf5' 'qhull' 'fltk'
'suitesparse' 'arpack' 'pcre' 'qt' 'fontconfig' 'zlib' 'qrupdate' 'freetype2' 'qscintilla' 'gl2ps')
makedepends=('texlive-core' 'gcc-fortran' 'texinfo' 'gnuplot' 'openjdk')
optdepends=('texinfo: for help-support in octave'
'gnuplot: alternative plotting'
'openjdk: to call Java functions')
source=(ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.xz)
install='octave.install'
sha1sums=('76b531063e37df13fdbe3467a6e3c14dce364d9e')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
autoreconf -vfi
./configure --prefix=/usr \
--libexecdir=/usr/lib \
--enable-shared \
--disable-static \
--with-umfpack="-lumfpack -lsuitesparseconfig"
MOC=moc UIC=uic
LANG=C make
}
package(){
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
# add path to ld.so.conf.d
install -d "${pkgdir}/etc/ld.so.conf.d"
echo "/usr/lib/${pkgname}/${pkgver}" > "${pkgdir}/etc/ld.so.conf.d/${pkgname}.conf"
}