wok view arpack-ng/receipt @ rev 20399
Add code2 (speech codec 0.7-3.2 Kb/s)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jun 27 16:09:41 2018 +0200 (2018-06-27) |
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 }