mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-17 12:10:51 +00:00
The configure flags common to all three fftw recipes are moved into fftw.inc and then each recipe just appends the extra flags it needs. This makes it easier to read and modify options which affect all three recipes. Signed-off-by: Paul Barker <paul@paulbarker.me.uk> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
24 lines
566 B
PHP
24 lines
566 B
PHP
DESCRIPTION = "FFTW"
|
|
SECTION = "libs"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
|
|
|
|
RPROVIDES_${PN} += "libfftw3"
|
|
|
|
SRC_URI = "http://www.fftw.org/fftw-${PV}.tar.gz"
|
|
|
|
S = "${WORKDIR}/fftw-${PV}"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = "--disable-fortran --enable-shared --enable-threads"
|
|
|
|
do_configure_prepend() {
|
|
echo 'AM_PROG_AS' >> ${S}/configure.ac
|
|
}
|
|
|
|
PACKAGES =+ "lib${PN}"
|
|
FILES_lib${PN} = "${libdir}/lib*.so.*"
|
|
|
|
# rename binary in /bin and use u-a tpo choose between different precision implementations?
|