summaryrefslogtreecommitdiffstats
path: root/extra/fftw
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-10 21:31:52 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-10 21:31:52 +0200
commit4fc8d98ab2c2ca011a6ddd593bc52de581a43ef6 (patch)
tree177d8c6465628fcf4fcdb1cbbcf083d8067ece56 /extra/fftw
parent1ddd65532ea945720fd84a6a54f02c1b0c886240 (diff)
downloadnutyx-extra-4fc8d98ab2c2ca011a6ddd593bc52de581a43ef6.tar.gz
nutyx-extra-4fc8d98ab2c2ca011a6ddd593bc52de581a43ef6.tar.bz2
nutyx-extra-4fc8d98ab2c2ca011a6ddd593bc52de581a43ef6.tar.xz
nutyx-extra-4fc8d98ab2c2ca011a6ddd593bc52de581a43ef6.zip
Ajout de fftw#3.2.2-1
Diffstat (limited to 'extra/fftw')
-rw-r--r--extra/fftw/.footprint22
-rw-r--r--extra/fftw/.md5sum1
-rw-r--r--extra/fftw/Pkgfile21
3 files changed, 44 insertions, 0 deletions
diff --git a/extra/fftw/.footprint b/extra/fftw/.footprint
new file mode 100644
index 000000000..73f09ee56
--- /dev/null
+++ b/extra/fftw/.footprint
@@ -0,0 +1,22 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/fftw-wisdom
+-rwxr-xr-x root/root usr/bin/fftw-wisdom-to-conf
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/fftw3.f
+-rw-r--r-- root/root usr/include/fftw3.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libfftw3.a
+-rwxr-xr-x root/root usr/lib/libfftw3.la
+lrwxrwxrwx root/root usr/lib/libfftw3.so -> libfftw3.so.3.2.4
+lrwxrwxrwx root/root usr/lib/libfftw3.so.3 -> libfftw3.so.3.2.4
+-rwxr-xr-x root/root usr/lib/libfftw3.so.3.2.4
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/fftw3.pc
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/info/
+-rw-r--r-- root/root usr/share/info/fftw3.info.gz
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/fftw-wisdom-to-conf.1.gz
+-rw-r--r-- root/root usr/share/man/man1/fftw-wisdom.1.gz
diff --git a/extra/fftw/.md5sum b/extra/fftw/.md5sum
new file mode 100644
index 000000000..798bd7c7f
--- /dev/null
+++ b/extra/fftw/.md5sum
@@ -0,0 +1 @@
+b616e5c91218cc778b5aa735fefb61ae fftw-3.2.2.tar.gz
diff --git a/extra/fftw/Pkgfile b/extra/fftw/Pkgfile
new file mode 100644
index 000000000..73c19c947
--- /dev/null
+++ b/extra/fftw/Pkgfile
@@ -0,0 +1,21 @@
+# Description: Librairie C subroutine pour les transformations de Fourier
+# URL: http://www.fftw.org/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: gcc-fortran
+
+name=fftw
+version=3.2.2
+release=1
+source=(http://www.fftw.org/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+ ./configure F77=gfortran \
+ --prefix=/usr \
+ --enable-type-prefix \
+ --enable-shared
+ make
+ make DESTDIR=$PKG install
+ rm $PKG/usr/share/info/dir
+}