wok rev 21573

updated arpack-ng and arpack-ng-dev (3.1.5 -> 3.7.0)
author Hans-G?nter Theisgen
date Sun May 19 07:39:55 2019 +0100 (2019-05-19)
parents 7441485e30be
children 06a20620a233
files arpack-ng-dev/receipt arpack-ng/receipt
line diff
     1.1 --- a/arpack-ng-dev/receipt	Sat May 18 17:29:21 2019 +0100
     1.2 +++ b/arpack-ng-dev/receipt	Sun May 19 07:39:55 2019 +0100
     1.3 @@ -1,20 +1,21 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="arpack-ng-dev"
     1.7 -VERSION="3.1.5"
     1.8 +VERSION="3.7.0"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Fortran77 subroutines to solve large scale eigenvalue problems."
    1.11 +SHORT_DESC="Fortran77 subroutines to solve large scale eigenvalue problems - development files."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="BSD"
    1.14 -WEB_SITE="http://forge.scilab.org/index.php/p/arpack-ng/"
    1.15 -WANTED="arpack-ng"
    1.16 +WEB_SITE="https://github.com/opencollab/arpack-ng/"
    1.17  
    1.18  DEPENDS="arpack-ng pkg-config"
    1.19 +WANTED="arpack-ng"
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr/lib
    1.25 -	cp -a $install/usr/lib/*a $fs/usr/lib
    1.26 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.27 +
    1.28 +	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.29 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.30  }
     2.1 --- a/arpack-ng/receipt	Sat May 18 17:29:21 2019 +0100
     2.2 +++ b/arpack-ng/receipt	Sun May 19 07:39:55 2019 +0100
     2.3 @@ -1,23 +1,26 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="arpack-ng"
     2.7 -VERSION="3.1.5"
     2.8 +VERSION="3.7.0"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Fortran77 subroutines to solve large scale eigenvalue problems."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="BSD"
    2.13 +WEB_SITE="https://github.com/opencollab/arpack-ng/"
    2.14 +GIT_SITE="https://github.com/opencollab/arpack-ng"
    2.15 +
    2.16  TARBALL="${PACKAGE}_$VERSION.tar.gz"
    2.17 -GIT_SITE="https://github.com/opencollab/arpack-ng"
    2.18 -WEB_SITE="http://forge.scilab.org/index.php/p/arpack-ng/"
    2.19 -WGET_URL="${WEB_SITE}downloads/get/$TARBALL"
    2.20 +WGET_URL="${WEB_SITE}archive/$VERSION/$TARBALL"
    2.21  
    2.22 -DEPENDS="libgfortran blas lapack"
    2.23 -BUILD_DEPENDS="gfortran blas lapack"
    2.24 +DEPENDS="blas lapack libgfortran"
    2.25 +BUILD_DEPENDS="autoconf automake blas gfortran lapack"
    2.26  
    2.27  # Rules to configure and make the package.
    2.28  compile_rules()
    2.29  {
    2.30 -	./configure --prefix=/usr \
    2.31 +	./bootstrap &&
    2.32 +	./configure		\
    2.33 +		--prefix=/usr	\
    2.34  		$CONFIGURE_ARGS &&
    2.35  	make &&
    2.36  	make DESTDIR=$DESTDIR install