updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / fftw2double / PKGBUILD
blob56e96f8690c8f4e2ee4dd4bcfbce8a9593e4b5c0
1 pkgname=fftw2double
2 pkgver=2.1.5
3 pkgrel=2
4 pkgdesc="FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of both real and complex data, and of arbitrary input size. This is package is offering backwards compatibility version 2.x.y. of fftw."
5 arch=(i686)
6 url="http://www.fftw.org/"
7 depends=('glibc')
8 makedepends=('gcc>=4.3.0')
9 source=(http://www.fftw.org/fftw-$pkgver.tar.gz)
10 md5sums=('8d16a84f3ca02a785ef9eb36249ba433')
11 license=('GPL')
13 build() {
14   cd $startdir/src/fftw-$pkgver
15   # build + install double precision
16   ./configure F77=gfortran --prefix=/usr \
17               --enable-shared \
18                 --enable-threads
19   make || return 1
20   make prefix=$startdir/pkg/usr install || return 1
22   make clean