package: add fftw library

fftw is a library for fast fourier transforms.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2011-09-28 23:32:32 +02:00
parent 6fc42cda36
commit 8d6aaaa6ff
3 changed files with 23 additions and 0 deletions

View File

@ -338,6 +338,7 @@ source "package/libupnp/Config.in"
endmenu
menu "Other"
source "package/fftw/Config.in"
source "package/libargtable2/Config.in"
source "package/argp-standalone/Config.in"
source "package/libatomic_ops/Config.in"

11
package/fftw/Config.in Normal file
View File

@ -0,0 +1,11 @@
config BR2_PACKAGE_FFTW
bool "fftw"
help
Library for computing Fast Fourier Transforms.
This library computes Fast Fourier Transforms (FFT) in one
or more dimensions. It is extremely fast. This package
contains the shared library version of the fftw libraries in
double precision.
http://www.fftw.org

11
package/fftw/fftw.mk Normal file
View File

@ -0,0 +1,11 @@
################################################################################
#
# fftw
#
################################################################################
FFTW_VERSION = 3.3
FFTW_SITE = http://www.fftw.org
FFTW_INSTALL_STAGING = YES
$(eval $(call AUTOTARGETS,package,fftw))