summaryrefslogtreecommitdiff
path: root/extra/fftw/PKGBUILD
blob: c689801ea07b43d7d3ffdd22fad0094cb34c1b2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# $Id: PKGBUILD 159277 2012-05-20 10:35:50Z ronald $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: damir <damir@archlinux.org>

pkgname=fftw
pkgver=3.3.2
pkgrel=1
pkgdesc="A library for computing the discrete Fourier transform (DFT)"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL2')
url="http://www.fftw.org/"
depends=('glibc' 'bash')
makedepends=('gcc-fortran')
options=('!libtool')
source=("http://www.fftw.org/${pkgname}-${pkgver}.tar.gz")
install=fftw.install
sha1sums=('11a8c31186ff5a7d686a79a3f21b2530888e0dc2')

# notes:
# http://www.fftw.org/fftw2_doc/fftw_6.html#SEC69
# http://www.fftw.org/faq/section2.html#singleprec
# http://www.fftw.org/fftw3_doc/Precision.html#Precision


build() {
  cd ${srcdir}/${pkgname}-${pkgver}

  if [ "$CARCH" = "mips64el" ] ; then
      sse2=""
      sse=""
      aligndouble=""
  else
      sse2="--enable-sse2"
      sse="--enable-sse"
      aligndouble="-malign-double"
  fi

  # use upstream default CFLAGS while keeping our -march/-mtune
  CFLAGS+=" -O3 -fomit-frame-pointer $aligndouble -fstrict-aliasing -ffast-math"

  CONFIGURE="./configure F77=gfortran --prefix=/usr \
                 --enable-shared --enable-threads --enable-type-prefix"

  msg "Build & install double precision"
  $CONFIGURE $sse2
  make
  make DESTDIR=${pkgdir} install
  make clean

  msg "build & install long double precission"
  $CONFIGURE --enable-long-double
  make
  make DESTDIR=${pkgdir} install
  make clean

  msg "build & install single precision"
  $CONFIGURE --enable-float $sse
  make
  make DESTDIR=${pkgdir} install
}