wok-next view scilab/receipt @ rev 20533

cairo-clock, grub4dos: fix CFLAGS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 27 12:50:45 2018 +0200 (2018-03-27)
parents d43bf7aae921
children 10df65db91ad
line source
1 # SliTaz package receipt.
3 PACKAGE="scilab"
4 VERSION="5.5.2"
5 CATEGORY="office"
6 SHORT_DESC="Open source software for numerical computation."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="CECILL"
9 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
10 WEB_SITE="http://www.scilab.org/"
11 WGET_URL="${WEB_SITE}download/$VERSION/$TARBALL"
13 DEPENDS="libgfortran tk curl blas lapack hdf5 pcre fftw libxml2 gcc-lib-math \
14 arpack-ng matio"
15 BUILD_DEPENDS="gfortran hdf5-dev ocaml fftw-dev libxml2-dev \
16 gettext blas lapack curl-dev tcl-dev tk-dev xorg-dev ncurses-dev \
17 arpack-ng-dev matio-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 fix math
23 ./configure --prefix=/usr \
24 --without-javasci --without-gui --disable-build-help \
25 --without-umfpack \
26 $CONFIGURE_ARGS &&
27 make all &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cp -a $install/* $fs/
35 }