wok-next diff maxima/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents c7a7d8278ff3
children
line diff
     1.1 --- a/maxima/receipt	Sat Nov 11 10:46:19 2017 +0100
     1.2 +++ b/maxima/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.3 @@ -3,29 +3,28 @@
     1.4  PACKAGE="maxima"
     1.5  VERSION="5.41.0"
     1.6  CATEGORY="misc"
     1.7 -SHORT_DESC="a Computer Algebra System."
     1.8 +SHORT_DESC="A Computer Algebra System"
     1.9  MAINTAINER="pascal.bellard@slitaz.org"
    1.10  LICENSE="GPL2"
    1.11 +WEB_SITE="http://maxima.sourceforge.net/"
    1.12 +
    1.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 -WEB_SITE="http://maxima.sourceforge.net/"
    1.15  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.16  
    1.17 -DEPENDS="tk rlwrap"
    1.18  BUILD_DEPENDS="clisp texinfo"
    1.19  
    1.20 -# Rules to configure and make the package.
    1.21 -compile_rules()
    1.22 -{
    1.23 -	./configure --prefix=/usr --mandir=/usr/share/man \
    1.24 +compile_rules() {
    1.25 +	./configure \
    1.26 +		--prefix=/usr \
    1.27 +		--mandir=/usr/share/man \
    1.28  		--localstatedir=/var \
    1.29 -	$CONFIGURE_ARGS &&
    1.30 -	make -j 1 && make -j 1 check &&
    1.31 -	make DESTDIR=$DESTDIR install
    1.32 +		$CONFIGURE_ARGS &&
    1.33 +	make -j1 &&
    1.34 +	make -j1 check &&
    1.35 +	make DESTDIR=$install install
    1.36  }
    1.37  
    1.38 -# Rules to gen a SliTaz package suitable for Tazpkg.   
    1.39 -genpkg_rules()                                      
    1.40 -{
    1.41 +genpkg_rules() {
    1.42  	mkdir -p $fs/usr/share/applications
    1.43  	cp -a $install/usr $fs
    1.44  	cat > $fs/usr/share/applications/xmaxima.desktop <<EOT
    1.45 @@ -38,4 +37,5 @@
    1.46  Type=Application
    1.47  Categories=GNOME;Application;Utility;
    1.48  EOT
    1.49 +	DEPENDS="tk rlwrap"
    1.50  }