wok-next annotate maxima/receipt @ rev 20460

Tiny edits
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Mar 03 17:38:00 2018 +0200 (2018-03-03)
parents 051931e905b0
children d5aab818505e
rev   line source
pascal@11225 1 # SliTaz package receipt.
pascal@11225 2
pascal@11225 3 PACKAGE="maxima"
pascal@20315 4 VERSION="5.41.0"
pascal@11225 5 CATEGORY="misc"
pascal@11225 6 SHORT_DESC="a Computer Algebra System."
pascal@11225 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
pascal@11225 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@11225 10 WEB_SITE="http://maxima.sourceforge.net/"
pascal@11225 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@11225 12
pascal@11225 13 DEPENDS="tk rlwrap"
pascal@11225 14 BUILD_DEPENDS="clisp texinfo"
pascal@11225 15
pascal@11225 16 # Rules to configure and make the package.
pascal@11225 17 compile_rules()
pascal@11225 18 {
pascal@11225 19 ./configure --prefix=/usr --mandir=/usr/share/man \
pascal@11225 20 --localstatedir=/var \
pascal@11225 21 $CONFIGURE_ARGS &&
pascal@11225 22 make -j 1 && make -j 1 check &&
pascal@15602 23 make DESTDIR=$DESTDIR install
pascal@11225 24 }
pascal@11225 25
pascal@11225 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11225 27 genpkg_rules()
pascal@11225 28 {
pascal@11225 29 mkdir -p $fs/usr/share/applications
pascal@15603 30 cp -a $install/usr $fs
pascal@11225 31 cat > $fs/usr/share/applications/xmaxima.desktop <<EOT
pascal@11225 32 [Desktop Entry]
pascal@11225 33 Encoding=UTF-8
pascal@11225 34 Name=Maxima Algebra System
pascal@11225 35 Exec=xmaxima
samuel_trassare@12009 36 Icon=maxima-icon
pascal@11225 37 Terminal=false
pascal@11225 38 Type=Application
pascal@11225 39 Categories=GNOME;Application;Utility;
pascal@11225 40 EOT
pascal@11225 41 }