mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-16 18:40:03 +00:00
f2fdce3ec9
Replace the PN with BPN to fix the multilib build. The error is: /ala-lpggp21/bpiolin/intel-x86-64-gplv2-4/bitbake_build/tmp/pkgdata/*/runtime-reverse/lib32-libfftw: No such file or directory Because the PN causes the package is named as lib32-liblib32-fftw. Signed-off-by: Yue Tao <Yue.Tao@windriver.com> Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
26 lines
595 B
PHP
26 lines
595 B
PHP
DESCRIPTION = "FFTW"
|
|
SECTION = "libs"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
|
|
|
|
PROVIDES = "virtual/fftw"
|
|
|
|
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${BPN}"
|
|
FILES_lib${BPN} = "${libdir}/lib*.so.*"
|
|
|
|
# rename binary in /bin and use u-a tpo choose between different precision implementations?
|