wok-next view arpack-ng/receipt @ rev 18940

Up musl-libc (1.1.14) CVE-2015-1817
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 02 11:58:42 2016 +0100 (2016-03-02)
parents
children 57422350b15e
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 }