wok view scilab/receipt @ rev 21864

updated scilab (5.5.2 -> 6.0.2)
author Hans-G?nter Theisgen
date Fri Sep 20 17:42:35 2019 +0100 (2019-09-20)
parents e9d3c81466d5
children 11cb94e92478
line source
1 # SliTaz package receipt.
3 PACKAGE="scilab"
4 VERSION="6.0.2"
5 CATEGORY="office"
6 SHORT_DESC="Open source software for numerical computation."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="CECILL"
9 WEB_SITE="https://www.scilab.org/"
11 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
12 WGET_URL="${WEB_SITE}download/$VERSION/$TARBALL"
14 DEPENDS="arpack-ng blas curl eigen fftw gcc83-lib-base gcclib-math hdf5 \
15 lapack libgfortran libxml2 matio pcre tk"
16 BUILD_DEPENDS="arpack-ng-dev blas curl-dev eigen fftw-dev gcc83 gfortran \
17 hdf5-dev gettext lapack libxml2-dev matio-dev ncursesw-dev \
18 ocaml pkg-config tcl-dev tk-dev xorg-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 export CC=gcc-83
24 export CXX=g++-83
25 export LDFLAGS="$LDFLAGS -ltinfo"
26 export BLAS_LIBS="/usr/lib/libblas.so"
27 export BLAS_CFLAGS=" "
29 # 6.0.2 without-arpack-ng to avoid configure error:
30 # ARPACK library found, but seems not to work properly.
31 # Please make sure you are using arpack-ng
32 ./configure \
33 --prefix=/usr \
34 --without-arpack-ng \
35 --with-blas-library=/usr/lib \
36 --without-javasci \
37 --without-gui \
38 --disable-build-help \
39 --without-umfpack \
40 $CONFIGURE_ARGS &&
41 make all &&
42 make DESTDIR=$DESTDIR install
43 }
45 # Rules to gen a SliTaz package suitable for Tazpkg.
46 genpkg_rules()
47 {
48 cp -a $install/* $fs/
49 }