wok view arpack-ng/receipt @ rev 21339

updated gnuradio (3.7.10.1 -> 3.7.13.4)
author Hans-G?nter Theisgen
date Sat Apr 20 11:34:23 2019 +0100 (2019-04-20)
parents 798cfdd09060
children dc7a250e4305
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 GIT_SITE="https://github.com/opencollab/arpack-ng"
11 WEB_SITE="http://forge.scilab.org/index.php/p/arpack-ng/"
12 WGET_URL="${WEB_SITE}downloads/get/$TARBALL"
14 DEPENDS="libgfortran blas lapack"
15 BUILD_DEPENDS="gfortran blas lapack"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }