From 3455cdfbc5b36bb746c5b0c2571acdb97fe46626 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sun, 2 Dec 2018 17:03:13 +0100 Subject: [PATCH] umockdev: initial add 0.12.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-support/umockdev/umockdev_git.bb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 recipes-support/umockdev/umockdev_git.bb diff --git a/recipes-support/umockdev/umockdev_git.bb b/recipes-support/umockdev/umockdev_git.bb new file mode 100644 index 00000000..41b0d06b --- /dev/null +++ b/recipes-support/umockdev/umockdev_git.bb @@ -0,0 +1,20 @@ +SUMMARY = "Mock hardware devices for creating unit tests and bug reporting" +LICENSE = "LGPL-2.1" +LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" + +SRC_URI = "git://github.com/martinpitt/umockdev.git" +SRCREV = "a9a34ac0e71f6eae4432261ad3fd647dbee070cb" +PV = "0.12.1" +S = "${WORKDIR}/git" + +inherit autotools pkgconfig gobject-introspection gtk-doc vala + +DEPENDS += "glib-2.0 udev libgudev" + +EXTRA_OECONF = "--disable-gtk-doc --enable-introspection" +# Although we disable doc we need ${S}/docs/gtk-doc.make +GTKDOC_DOCDIR = "${S}/docs" + +do_configure_prepend() { + mkdir -p ${S}/m4 +}