diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2016-06-03 12:49:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.200> | 2016-06-19 19:33:38 +0000 |
commit | 7f0d1323623425c5f1ceed7cb680070a71129b00 (patch) | |
tree | 1d5c976665ddc272ce8c733b77c0ef9ea8c7ce71 | |
parent | 3da55451c8825c236a37630ec47eefd654e5a771 (diff) |
libgsystem: Add LibGSystem
LibGSystem is a GIO-based library. OSTree depends
on it.
Bug-AGL: SPEC-194
Change-Id: I42da04a5e332dc5121d0509b839ee289cfba23c7
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
-rw-r--r-- | meta-agl/recipes-sota/libgsystem/libgsystem_git.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-agl/recipes-sota/libgsystem/libgsystem_git.bb b/meta-agl/recipes-sota/libgsystem/libgsystem_git.bb new file mode 100644 index 000000000..ed9638cbc --- /dev/null +++ b/meta-agl/recipes-sota/libgsystem/libgsystem_git.bb @@ -0,0 +1,21 @@ +SUMMARY = "GIO-based library, targeted primarily for use by operating system components" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" + +SRC_URI = "gitsm://git.gnome.org/libgsystem.git" +SRCREV="${AUTOREV}" + +S = "${WORKDIR}/git" + +DEPENDS += "attr glib-2.0 pkgconfig libcap" + +RDEPENDS_${PN} = "systemd liblzma" + +inherit autotools-brokensep + +BBCLASSEXTEND += "native" + +do_configure() { + NOCONFIGURE=true ./autogen.sh + oe_runconf +} |