wok-next view octave/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 466bca9334ef
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="octave"
4 VERSION="4.0.0"
5 CATEGORY="development"
6 SHORT_DESC="Language for numerical computations."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
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 glu xorg-libX11 xorg-libXext xorg-libXxf86vm xorg-libXdamage \
16 xorg-libXfixes libdrm xorg-libXau xorg-libXdmcp pcre libcurl lapack bash \
17 gcc fltk gnuplot"
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 libxml2-dev $DEPENDS"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 # http://www.nabble.com/Random-rounding-errors-td16010966.html
26 FFLAGS="-O -ffloat-store" \
27 ./configure --prefix=/usr --infodir=/usr/share/info \
28 --libexecdir=/usr/lib/$PACKAGE \
29 --mandir=/usr/share/man \
30 --enable-shared --disable-static --disable-docs \
31 $CONFIGURE_ARGS &&
32 LANG=C make $MAKEFLAGS &&
33 make DESTDIR=$DESTDIR install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 cp -a $install/* $fs
40 }