############################################################################# ## ## Copyright (C) 2015 Digia Plc and/or its subsidiary(-ies). ## ## This file is part of the Qt Enterprise Embedded Scripts of the Qt ## framework. ## ## $QT_BEGIN_LICENSE$ ## Commercial License Usage Only ## Licensees holding valid commercial Qt license agreements with Digia ## with an appropriate addendum covering the Qt Enterprise Embedded Scripts, ## may use this file in accordance with the terms contained in said license ## agreement. ## ## For further information use the contact form at ## http://www.qt.io/contact-us. ## ## ## $QT_END_LICENSE$ ## ############################################################################# SUMMARY = "Tool for managing bootable, immutable, versioned filesystem trees." LICENSE = "LGPL-2.1" LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" inherit autotools pkgconfig SRC_URI = "git://github.com/GNOME/ostree.git;tag=v2015.7" S = "${WORKDIR}/git" DEPENDS = "glib-2.0 e2fsprogs gpgme attr libsoup-2.4 libgsystem libassuan xz" EXTRA_OECONF = "--with-dracut --without-selinux --without-libarchive --with-grub2=no --enable-gtk-doc-html=no" do_configure_prepend() { cd ${S} # Update submodules and workaround bugs. env NOCONFIGURE=1 ./autogen.sh cd - } do_install_append() { # Silence installed-vs-shipped error message. We provide our own dracut module. # The only way to force OSTree to build necessary binaries is to pass "--with-dracut", # this of course is a broken configure.ac logic. rm -rf ${D}${libdir}/dracut/ }