wok annotate octave/receipt @ rev 15071

cndrvcups-common: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 13 14:11:10 2013 +0000 (2013-08-13)
parents 6b09507225ec
children f4cabbf676fc
rev   line source
pascal@4906 1 # SliTaz package receipt.
pascal@4906 2
pascal@4906 3 PACKAGE="octave"
slaxemulator@13096 4 VERSION="3.6.2"
pascal@4906 5 CATEGORY="development"
pascal@4906 6 SHORT_DESC="Language for numerical computations."
pascal@4906 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
pascal@4906 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@4906 10 WEB_SITE="http://www.gnu.org/software/octave/"
pascal@12575 11 WGET_URL="ftp://ftp.gnu.org/gnu/$PACKAGE/$TARBALL"
pascal@13796 12 TAGS="programming language"
pascal@13796 13
slaxemulator@13096 14 DEPENDS="libgfortran zlib ncurses readline freetype gcc-lib-base expat \
slaxemulator@6970 15 mesa libglu-mesa xorg-libX11 xorg-libXext xorg-libXxf86vm xorg-libXdamage \
pascal@13318 16 xorg-libXfixes libdrm xorg-libXau xorg-libXdmcp pcre libcurl lapack bash \
pascal@13318 17 gcc fltk"
pascal@13796 18 BUILD_DEPENDS="gfortran zlib-dev ncurses-dev readline-dev freetype-dev xorg-dev \
pascal@13796 19 fltk-dev perl texinfo lapack tar gawk pcre-dev mesa-dev curl-dev \
pascal@13796 20 libdrm-dev expat-dev $DEPENDS"
pascal@4906 21
pascal@4906 22 # Rules to configure and make the package.
pascal@4906 23 compile_rules()
pascal@4906 24 {
pascal@4906 25 cd $src
slaxemulator@6643 26
slaxemulator@6643 27 # http://www.nabble.com/Random-rounding-errors-td16010966.html
slaxemulator@6643 28 FFLAGS="-O -ffloat-store" \
pascal@4906 29 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@4906 30 --libexecdir=/usr/lib/$PACKAGE \
pascal@4906 31 --mandir=/usr/share/man \
slaxemulator@13096 32 --enable-shared --disable-static --disable-docs \
pascal@4906 33 $CONFIGURE_ARGS &&
slaxemulator@13096 34 LANG=C make $MAKEFLAGS &&
slaxemulator@13096 35 make DESTDIR=$DESTDIR install
pascal@4906 36 }
pascal@4906 37
pascal@4906 38 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4906 39 genpkg_rules()
pascal@4906 40 {
pascal@13796 41 cp -a $install/* $fs
pascal@4906 42 }
pascal@4906 43