cmake: don't inherit autotools

cmake doesn't use autotools, the functions get replaced by either cmake.bbclass
(target) or the recipe itself (native) leaving just lots of superfluous
dependencies.

(From OE-Core rev: b8700e9fd30317d0ad583febb4e6f385284bdd51)

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ross Burton
2016-09-14 17:41:35 +01:00
committed by Richard Purdie
parent 84e0260e03
commit 08dc55ce84
2 changed files with 15 additions and 9 deletions

View File

@@ -8,6 +8,9 @@ SRC_URI += "\
file://cmlibarchive-disable-ext2fs.patch \
"
B = "${WORKDIR}/build"
do_configure[cleandirs] = "${B}"
# Disable ccmake since we don't depend on ncurses
CMAKE_EXTRACONF = "\
-DBUILD_CursesDialog=0 \
@@ -15,4 +18,16 @@ CMAKE_EXTRACONF = "\
-DHAVE_SYS_ACL_H=0 \
"
do_configure () {
${S}/configure --prefix=${prefix} -- ${CMAKE_EXTRACONF}
}
do_compile() {
oe_runmake
}
do_install() {
oe_runmake 'DESTDIR=${D}' install
}
do_compile[progress] = "percent"