Remove fftw2

This commit is contained in:
Lukas 2012-08-21 21:46:20 +00:00
parent 4fb7977831
commit 81891a6ed3

View File

@ -1,34 +0,0 @@
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
# Maintainer: damir <damir@archlinux.org>
pkgname=fftw2
pkgver=2.1.5
pkgrel=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."
arch=(i686 x86_64)
url="http://www.fftw.org/"
license=('GPL2')
depends=('glibc')
options=(!libtool)
source=(http://www.fftw.org/fftw-${pkgver}.tar.gz)
md5sums=('8d16a84f3ca02a785ef9eb36249ba433')
build() {
cd ${startdir}/src/fftw-${pkgver}
# build + install double precision
./configure F77=gfortran --prefix=/usr \
--enable-type-prefix --enable-shared \
--enable-threads
make || return 1
make DESTDIR=${startdir}/pkg install || return 1
make clean
# build + install single precision
./configure F77=gfortran --prefix=/usr \
--enable-float --enable-type-prefix --enable-shared \
--enable-threads
make || return 1
#make prefix=$startdir/pkg/usr install || return 1
make DESTDIR=${startdir}/pkg install || return 1
}