mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:47:15 +08:00
44 lines
1.3 KiB
Bash
44 lines
1.3 KiB
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=octave
|
|
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' 'python')
|
|
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")
|
|
options=('!emptydirs')
|
|
#install=octave.install
|
|
sha1sums=('fe622c28a38f8730c59e46211bc7b18e7f51a679')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
# http://www.nabble.com/Random-rounding-errors-td16010966.html
|
|
FFLAGS="-O -ffloat-store" \
|
|
|
|
./configure --prefix=/usr --libexecdir=/usr/lib \
|
|
--enable-shared --disable-static --disable-docs
|
|
|
|
make
|
|
}
|
|
|
|
package(){
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|