diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-oe/recipes-support/fftw | |
download | meta-openembedded-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-oe/recipes-support/fftw')
-rw-r--r-- | meta-oe/recipes-support/fftw/fftw.inc | 23 | ||||
-rw-r--r-- | meta-oe/recipes-support/fftw/fftw_3.3.4.bb | 6 | ||||
-rw-r--r-- | meta-oe/recipes-support/fftw/fftwf_3.3.4.bb | 8 | ||||
-rw-r--r-- | meta-oe/recipes-support/fftw/fftwl_3.3.4.bb | 6 |
4 files changed, 43 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/fftw/fftw.inc b/meta-oe/recipes-support/fftw/fftw.inc new file mode 100644 index 0000000000..6bd622d9b8 --- /dev/null +++ b/meta-oe/recipes-support/fftw/fftw.inc | |||
@@ -0,0 +1,23 @@ | |||
1 | DESCRIPTION = "FFTW" | ||
2 | SECTION = "libs" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" | ||
5 | |||
6 | RPROVIDES_${PN} += "libfftw3" | ||
7 | |||
8 | SRC_URI = "http://www.fftw.org/fftw-${PV}.tar.gz" | ||
9 | |||
10 | S = "${WORKDIR}/fftw-${PV}" | ||
11 | |||
12 | inherit autotools pkgconfig | ||
13 | |||
14 | EXTRA_OECONF = "--disable-fortran --enable-shared --enable-threads" | ||
15 | |||
16 | do_configure_prepend() { | ||
17 | echo 'AM_PROG_AS' >> ${S}/configure.ac | ||
18 | } | ||
19 | |||
20 | PACKAGES =+ "lib${PN}" | ||
21 | FILES_lib${PN} = "${libdir}/lib*.so.*" | ||
22 | |||
23 | # rename binary in /bin and use u-a tpo choose between different precision implementations? | ||
diff --git a/meta-oe/recipes-support/fftw/fftw_3.3.4.bb b/meta-oe/recipes-support/fftw/fftw_3.3.4.bb new file mode 100644 index 0000000000..990f01e2f7 --- /dev/null +++ b/meta-oe/recipes-support/fftw/fftw_3.3.4.bb | |||
@@ -0,0 +1,6 @@ | |||
1 | require fftw.inc | ||
2 | |||
3 | SRC_URI[md5sum] = "2edab8c06b24feeb3b82bbb3ebf3e7b3" | ||
4 | SRC_URI[sha256sum] = "8f0cde90929bc05587c3368d2f15cd0530a60b8a9912a8e2979a72dbe5af0982" | ||
5 | |||
6 | BBCLASSEXTEND = "native" | ||
diff --git a/meta-oe/recipes-support/fftw/fftwf_3.3.4.bb b/meta-oe/recipes-support/fftw/fftwf_3.3.4.bb new file mode 100644 index 0000000000..59f4a111f6 --- /dev/null +++ b/meta-oe/recipes-support/fftw/fftwf_3.3.4.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | require fftw.inc | ||
2 | |||
3 | EXTRA_OECONF += "--enable-single \ | ||
4 | ${@base_contains('TUNE_FEATURES', 'neon', '--enable-neon', '', d)} \ | ||
5 | " | ||
6 | |||
7 | SRC_URI[md5sum] = "2edab8c06b24feeb3b82bbb3ebf3e7b3" | ||
8 | SRC_URI[sha256sum] = "8f0cde90929bc05587c3368d2f15cd0530a60b8a9912a8e2979a72dbe5af0982" | ||
diff --git a/meta-oe/recipes-support/fftw/fftwl_3.3.4.bb b/meta-oe/recipes-support/fftw/fftwl_3.3.4.bb new file mode 100644 index 0000000000..8f37346596 --- /dev/null +++ b/meta-oe/recipes-support/fftw/fftwl_3.3.4.bb | |||
@@ -0,0 +1,6 @@ | |||
1 | require fftw.inc | ||
2 | |||
3 | EXTRA_OECONF += "--enable-long-double" | ||
4 | |||
5 | SRC_URI[md5sum] = "2edab8c06b24feeb3b82bbb3ebf3e7b3" | ||
6 | SRC_URI[sha256sum] = "8f0cde90929bc05587c3368d2f15cd0530a60b8a9912a8e2979a72dbe5af0982" | ||