wok rev 21660

updated pari and pari-dev (2.5.3 -> 2.11.2)
author Hans-G?nter Theisgen
date Fri May 31 17:51:21 2019 +0100 (2019-05-31)
parents aaa14b79e365
children 9ad97542cf5c
files pari-dev/receipt pari/receipt
line diff
     1.1 --- a/pari-dev/receipt	Fri May 31 17:29:36 2019 +0100
     1.2 +++ b/pari-dev/receipt	Fri May 31 17:51:21 2019 +0100
     1.3 @@ -1,18 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="pari-dev"
     1.7 -VERSION="2.5.3"
     1.8 +VERSION="2.11.2"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Devel files for PARI/GP"
    1.11 +SHORT_DESC="Development files for pari."
    1.12  MAINTAINER="al.bobylev@gmail.com"
    1.13  LICENSE="GPL2"
    1.14 -WEB_SITE="http://pari.math.u-bordeaux.fr/"
    1.15 +WEB_SITE="https://pari.math.u-bordeaux.fr/"
    1.16 +
    1.17  WANTED="pari"
    1.18  
    1.19  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.20  genpkg_rules()
    1.21  {
    1.22  	mkdir -p $fs/usr/lib
    1.23 -	cp -a $install/usr/include $fs/usr
    1.24 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.25 +
    1.26 +	cp -a $install/usr/include	$fs/usr
    1.27 +	cp -a $install/usr/lib/*.*a	$fs/usr/lib
    1.28  }
     2.1 --- a/pari/receipt	Fri May 31 17:29:36 2019 +0100
     2.2 +++ b/pari/receipt	Fri May 31 17:51:21 2019 +0100
     2.3 @@ -1,25 +1,30 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="pari"
     2.7 -VERSION="2.5.3"
     2.8 +VERSION="2.11.2"
     2.9  CATEGORY="utilities"
    2.10 -SHORT_DESC="PARI/GP is a widely used computer algebra system"
    2.11 +SHORT_DESC="Computer algebra system designed for fast computations in number theory."
    2.12  MAINTAINER="al.bobylev@gmail.com"
    2.13  LICENSE="GPL2"
    2.14 -WEB_SITE="http://pari.math.u-bordeaux.fr/"
    2.15 +WEB_SITE="https://pari.math.u-bordeaux.fr/"
    2.16 +
    2.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.18  WGET_URL="http://pari.math.u-bordeaux.fr/pub/$PACKAGE/unix/$TARBALL"
    2.19  
    2.20  DEPENDS="glibc-base gmp libxcb ncurses readline xorg-libX11 xorg-libXau \
    2.21 -xorg-libXdmcp"
    2.22 +	xorg-libXdmcp"
    2.23  BUILD_DEPENDS="gmp-dev readline-dev xorg-libX11-dev"
    2.24  
    2.25  # Rules to configure and make the package.
    2.26  compile_rules()
    2.27  {
    2.28  	mkdir build
    2.29 -	# this configure not respect $CONFIGURE_ARGS :(
    2.30 -	./Configure --host=$ARCH --graphic=X11 --builddir=build --prefix=/usr &&
    2.31 +	# this configure does not respect $CONFIGURE_ARGS :(
    2.32 +	./Configure			\
    2.33 +		--host=$ARCH		\
    2.34 +		--graphic=X11		\
    2.35 +		--builddir=build	\
    2.36 +		--prefix=/usr &&
    2.37  	cd build
    2.38  	make all &&
    2.39  	make DESTDIR=$install install 2>&1 | sed \
    2.40 @@ -31,8 +36,10 @@
    2.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.42  genpkg_rules()
    2.43  {
    2.44 -	mkdir -p $fs/usr/lib/pari $fs/usr/share
    2.45 -	cp -a $install/usr/bin $fs/usr
    2.46 -	cp -a $install/usr/lib/pari $fs/usr/lib
    2.47 -	cp -a $install/usr/share/pari $fs/usr/share
    2.48 +	mkdir -p $fs/usr/lib/pari
    2.49 +	mkdir -p $fs/usr/share
    2.50 +
    2.51 +	cp -a $install/usr/bin		$fs/usr
    2.52 +	cp -a $install/usr/lib/pari	$fs/usr/lib
    2.53 +	cp -a $install/usr/share/pari	$fs/usr/share
    2.54  }