milis/talimatname/genel/l/lapack/talimat

27 lines
597 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.

# Tanım: Temel Doğrusal Cebir Alt Programları, temel vektör ve matris işlemlerini gerçekleştirmek için standart yapı taşları sağlayan rutinlerdir.
# URL: http://www.netlib.org/blas
# Paketçi: milisarge
# Gerekler: cmake
# Grup: bilim
isim=lapack
surum=3.5.0
devir=1
kaynak=(http://www.netlib.org/$isim/$isim-$surum.tgz )
derle() {
cd $isim-$surum
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
}