wok view arpack-ng/receipt @ rev 17971

Add arpack-ng
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 17 23:23:01 2015 +0200 (2015-04-17)
parents
children 06e7758ce6d8
line source
1 # SliTaz package receipt.
3 PACKAGE="arpack-ng"
4 VERSION="3.1.5"
5 CATEGORY="development"
6 SHORT_DESC="Fortran77 subroutines to solve large scale eigenvalue problems."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="${PACKAGE}_$VERSION.tar.gz"
10 WEB_SITE="http://forge.scilab.org/index.php/p/arpack-ng/"
11 WGET_URL="${WEB_SITE}downloads/get/$TARBALL"
13 DEPENDS="libgfortran blas lapack"
14 BUILD_DEPENDS="gfortran blas lapack"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }