wok annotate arpack-ng/receipt @ rev 23234

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