diff options
author | root <root@rshg054.dnsready.net> | 2011-10-28 23:14:50 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-28 23:14:50 +0000 |
commit | 807f42c30ddb00c4e2d4034ce1720d7cb494e074 (patch) | |
tree | 80b0599366bffbfa57def09ed036e6ad635f1796 /extra/octave | |
parent | 0424b5fc47f106db6498c4cda3476e1d49fe0f82 (diff) |
Fri Oct 28 23:14:50 UTC 2011
Diffstat (limited to 'extra/octave')
-rw-r--r-- | extra/octave/PKGBUILD | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/extra/octave/PKGBUILD b/extra/octave/PKGBUILD index b88a9edbc..992a398a6 100644 --- a/extra/octave/PKGBUILD +++ b/extra/octave/PKGBUILD @@ -1,37 +1,34 @@ -# $Id: PKGBUILD 131750 2011-07-14 12:35:49Z ronald $ +# $Id: PKGBUILD 141254 2011-10-27 14:28:28Z ronald $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor : shining <shiningxc.at.gmail.com> # Contributor : cyberdune <cyberdune@gmail.com> pkgname=octave -pkgver=3.4.2 -pkgrel=2 +pkgver=3.4.3 +pkgrel=1 pkgdesc="A high-level language, primarily intended for numerical computations." arch=('i686' 'x86_64') url="http://www.octave.org" license=('GPL') depends=('fftw' 'pcre' 'curl' 'lapack' 'libx11' 'graphicsmagick' 'glpk' 'hdf5' 'gcc-libs' 'qhull') -makedepends=('texinfo' 'graphicsmagick' 'gcc-fortran' 'umfpack' 'texlive-core') +makedepends=('texinfo' 'graphicsmagick' 'gcc-fortran' 'umfpack' 'texlive-core' 'fltk') optdepends=('texinfo: for help-support in octave' 'gnuplot: alternative plotting' - 'umfpack: LU decomposition of some large sparse matrices') -source=("ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2" "curlfix.patch") + 'umfpack: LU decomposition of some large sparse matrices' + 'fltk: alternative plotting') +source=("ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2") options=('!emptydirs') install=octave.install -sha1sums=('12cac29ef7d1ab8374980e1e2fd14637b2f15ba5' - '3f856798f5f8aa15bce1200b8abd059154f3d909') +sha1sums=('fe622c28a38f8730c59e46211bc7b18e7f51a679') build() { cd ${srcdir}/${pkgname}-${pkgver} - # remove curl/types.h include - patch -Np0 -i ${srcdir}/curlfix.patch - # http://www.nabble.com/Random-rounding-errors-td16010966.html FFLAGS="-O -ffloat-store" \ ./configure --prefix=/usr --libexecdir=/usr/lib \ - --enable-shared --disable-static + --enable-shared --disable-static --with-quantum-depth=16 LANG=C make } |