sdeventplus: Use meson instead of autotools

This will allow us to get rid of autotools in the upstream sources.

Change-Id: I2ba44499d8897c52858765dc4ee1ed3ecd7f1f98
Signed-off-by: William A. Kennington III <wak@google.com>
diff --git a/recipes-extended/sdeventplus/sdeventplus_git.bb b/recipes-extended/sdeventplus/sdeventplus_git.bb
index 54187c9..d1ddff9 100644
--- a/recipes-extended/sdeventplus/sdeventplus_git.bb
+++ b/recipes-extended/sdeventplus/sdeventplus_git.bb
@@ -6,17 +6,16 @@
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
 
-inherit autotools pkgconfig
+inherit meson pkgconfig
 
 DEPENDS += " \
-        autoconf-archive-native \
         stdplus \
         systemd \
         "
 
-EXTRA_OECONF_append += " \
-        --disable-examples \
-        --disable-tests \
+EXTRA_OEMESON = " \
+        -Dexamples=false \
+        -Dtests=disabled \
         "
 
 SRC_URI += "git://github.com/openbmc/sdeventplus"