wok view arpack-ng/receipt @ rev 23034

updated libgdiplus and libggdiplus-dev again (2.10 -> 6.0.4)
author Hans-G?nter Theisgen
date Wed Mar 04 07:26:30 2020 +0100 (2020-03-04)
parents dc7a250e4305
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="arpack-ng"
4 VERSION="3.7.0"
5 CATEGORY="development"
6 SHORT_DESC="Fortran77 subroutines to solve large scale eigenvalue problems."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/opencollab/arpack-ng/"
10 GIT_SITE="https://github.com/opencollab/arpack-ng"
12 TARBALL="${PACKAGE}_$VERSION.tar.gz"
13 WGET_URL="${WEB_SITE}archive/$VERSION/$TARBALL"
15 DEPENDS="blas lapack libgfortran"
16 BUILD_DEPENDS="autoconf automake blas gfortran lapack libtool"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./bootstrap &&
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }