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