summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/fftwsingle/PKGBUILD
diff options
context:
space:
mode:
authorTom Culliton <culliton@x2.(none)>2009-01-26 03:19:21 (GMT)
committerTom Culliton <culliton@x2.(none)>2009-01-26 03:19:21 (GMT)
commit3ae1c7d4757ea8029f62fef790c92dc1d4026f80 (patch)
tree6820fa1a767e6a5e2400807a8fb2ff4b98f8785c /abs/core-testing/fftwsingle/PKGBUILD
parentf92249d347c09c6936074b94878d0892f13cdced (diff)
parent3aa13ed975d5da870d44571126bfe5dd3005c50c (diff)
downloadlinhes_pkgbuild-3ae1c7d4757ea8029f62fef790c92dc1d4026f80.zip
linhes_pkgbuild-3ae1c7d4757ea8029f62fef790c92dc1d4026f80.tar.gz
linhes_pkgbuild-3ae1c7d4757ea8029f62fef790c92dc1d4026f80.tar.bz2
Merge branch 'master' of tjc@linhes.org:LinHES-PKGBUILD
Diffstat (limited to 'abs/core-testing/fftwsingle/PKGBUILD')
-rw-r--r--abs/core-testing/fftwsingle/PKGBUILD26
1 files changed, 0 insertions, 26 deletions
diff --git a/abs/core-testing/fftwsingle/PKGBUILD b/abs/core-testing/fftwsingle/PKGBUILD
deleted file mode 100644
index c167d3f..0000000
--- a/abs/core-testing/fftwsingle/PKGBUILD
+++ /dev/null
@@ -1,26 +0,0 @@
-# Contributor: ndlarsen <ndlarsen@gmail.com>
-# Comment: Based on PKGBUILDs from the Extra repo for fftw2, maintained by damir <damir@archlinux.org>, and from AUR for fftw2double, maintained by bricem13.
-
-pkgname=fftw2single
-pkgver=2.1.5
-pkgrel=1
-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')
-license=('GPL')
-url="http://www.fftw.org/"
-depends=('glibc')
-makedepends=('gcc-fortran>=4.1.1')
-source=(http://www.fftw.org/fftw-$pkgver.tar.gz)
-md5sums=('8d16a84f3ca02a785ef9eb36249ba433')
-
-build() {
-
- cd $startdir/src/fftw-$pkgver
-
- ./configure F77=gfortran --prefix=/usr \
- --enable-float --enable-shared \
- --enable-threads
- make || return 1
- make prefix=$startdir/pkg/usr install || return 1
-
-}