wok-next annotate maxima/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents c7a7d8278ff3
children
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"
al@21020 6 SHORT_DESC="A Computer Algebra System"
pascal@11225 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
al@21020 9 WEB_SITE="http://maxima.sourceforge.net/"
al@21020 10
pascal@11225 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@11225 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@11225 13
pascal@11225 14 BUILD_DEPENDS="clisp texinfo"
pascal@11225 15
al@21020 16 compile_rules() {
al@21020 17 ./configure \
al@21020 18 --prefix=/usr \
al@21020 19 --mandir=/usr/share/man \
pascal@11225 20 --localstatedir=/var \
al@21020 21 $CONFIGURE_ARGS &&
al@21020 22 make -j1 &&
al@21020 23 make -j1 check &&
al@21020 24 make DESTDIR=$install install
pascal@11225 25 }
pascal@11225 26
al@21020 27 genpkg_rules() {
pascal@11225 28 mkdir -p $fs/usr/share/applications
pascal@15603 29 cp -a $install/usr $fs
pascal@11225 30 cat > $fs/usr/share/applications/xmaxima.desktop <<EOT
pascal@11225 31 [Desktop Entry]
pascal@11225 32 Encoding=UTF-8
pascal@11225 33 Name=Maxima Algebra System
pascal@11225 34 Exec=xmaxima
samuel_trassare@12009 35 Icon=maxima-icon
pascal@11225 36 Terminal=false
pascal@11225 37 Type=Application
pascal@11225 38 Categories=GNOME;Application;Utility;
pascal@11225 39 EOT
al@21020 40 DEPENDS="tk rlwrap"
pascal@11225 41 }