cruxports/arpack/Pkgfile

23 lines
545 B
Plaintext

# Description: Fortran77 subroutines for solving large scale eigenvalue problems
# URL: https://github.com/opencollab/arpack-ng
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: lapack
name=arpack
version=3.8.0
release=1
source=(https://github.com/opencollab/arpack-ng/archive/refs/tags/$version.tar.gz)
renames=($name-$version.tar.gz)
build() {
cd $name-ng-$version
sh bootstrap
./configure --prefix=/usr
make
make check
make DESTDIR=$PKG install
# strip .la files
rm -f $PKG/usr/lib/*.la
}