milis/talimatname/genel/fftw/talimat

43 lines
1.1 KiB
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: Ayrık Fourier dönüşümü (DFT) hesaplamak için bir kütüphane.
# URL: http://www.fftw.org/
# Packager: milisarge
# Depends on:
name=fftw
version=3.3.4
release=3
source=(http://www.fftw.org/$name-$version.tar.gz)
build() {
cd $SRC
cp -a $name-$version $name-$version-double
cp -a $name-$version $name-$version-long-double
mv $name-$version $name-$version-single
# use upstream default CFLAGS while keeping our -march/-mtune
CFLAGS+=" -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math"
CONFIGURE="./configure F77=gfortran --prefix=/usr \
--enable-shared --enable-threads \
--enable-openmp"
# build double precision
cd $SRC/$name-$version-double
$CONFIGURE --enable-sse2 --enable-avx
make
make DESTDIR=$PKG install
# build & install long double precission
cd $SRC/$name-$version-long-double
$CONFIGURE --enable-long-double
make
make DESTDIR=$PKG install
# build & install single precision
cd $SRC/$name-$version-single
$CONFIGURE --enable-float --enable-sse --enable-avx
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/info/dir
}