wok annotate scilab/receipt @ rev 21160

Up ufraw (0.22)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 31 15:04:44 2019 +0200 (2019-03-31)
parents bcaf95dc6037
children 223f49cc173b
rev   line source
pascal@17970 1 # SliTaz package receipt.
pascal@17970 2
pascal@17970 3 PACKAGE="scilab"
pascal@17970 4 VERSION="5.5.2"
pascal@17970 5 CATEGORY="office"
pascal@17970 6 SHORT_DESC="Open source software for numerical computation."
pascal@17970 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17970 8 LICENSE="CECILL"
pascal@17970 9 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
pascal@17970 10 WEB_SITE="http://www.scilab.org/"
pascal@17970 11 WGET_URL="${WEB_SITE}download/$VERSION/$TARBALL"
pascal@17970 12
pascal@17976 13 DEPENDS="libgfortran tk curl blas lapack hdf5 pcre fftw libxml2 gcc-lib-math \
pascal@17974 14 arpack-ng matio"
pascal@17970 15 BUILD_DEPENDS="pkg-config gfortran hdf5-dev ocaml fftw-dev libxml2-dev \
pascal@17975 16 gettext blas lapack curl-dev tcl-dev tk-dev xorg-dev ncursesw-dev \
pascal@17974 17 arpack-ng-dev matio-dev"
pascal@17970 18
pascal@17970 19 # Rules to configure and make the package.
pascal@17970 20 compile_rules()
pascal@17970 21 {
pascal@19708 22 export LDFLAGS="$LDFLAGS -ltinfo"
pascal@17970 23 ./configure --prefix=/usr \
pascal@17970 24 --without-javasci --without-gui --disable-build-help \
pascal@17970 25 --without-umfpack \
pascal@17970 26 $CONFIGURE_ARGS &&
pascal@17970 27 make all &&
pascal@17970 28 make DESTDIR=$DESTDIR install
pascal@17970 29 }
pascal@17970 30
pascal@17970 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17970 32 genpkg_rules()
pascal@17970 33 {
pascal@17970 34 cp -a $install/* $fs/
pascal@17970 35 }