milis/talimatname/genel/lapack/talimat

26 lines
484 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: Temel Lineer Cebir Altprogramları
# URL: http://www.netlib.org/blas
# Packager: milisarge
# Depends on: cmake
name=lapack
version=3.5.0
release=1
source=(http://www.netlib.org/$name/$name-$version.tgz )
build() {
cd $name-$version
mkdir build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_Fortran_COMPILER=gfortran \
-DLAPACKE=ON
make
make DESTDIR=$PKG install
}