# HG changeset patch # User Pascal Bellard # Date 1318673716 -7200 # Node ID c5855fdc48bd3b67d9d7af45fb6ed6f74273a6db # Parent 07630c82161e88b9b3e3e14c150a8f17a2dfd779 Add maxima diff -r 07630c82161e -r c5855fdc48bd maxima/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/maxima/receipt Sat Oct 15 12:15:16 2011 +0200 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="maxima" +VERSION="5.25.1" +CATEGORY="misc" +SHORT_DESC="a Computer Algebra System." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://maxima.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +BUILD_DEPENDS="clisp" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --mandir=/usr/share/man \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && make check && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +}