From b8700e9fd30317d0ad583febb4e6f385284bdd51 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 14 Sep 2016 17:41:35 +0100 Subject: 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. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/recipes-devtools/cmake/cmake-native_3.6.1.bb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'meta/recipes-devtools/cmake/cmake-native_3.6.1.bb') diff --git a/meta/recipes-devtools/cmake/cmake-native_3.6.1.bb b/meta/recipes-devtools/cmake/cmake-native_3.6.1.bb index 33930fbb9c..f3a485fc0e 100644 --- a/meta/recipes-devtools/cmake/cmake-native_3.6.1.bb +++ b/meta/recipes-devtools/cmake/cmake-native_3.6.1.bb @@ -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" -- cgit 1.2.3-korg