blob: 074a53b36f3573ee953e85151153ca5e0dc7ea4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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
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?
|