blob: e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 (
plain)
|
BBCLASSEXTEND = ""
SUMMARY = "Fast open source processor emulator"
DESCRIPTION = "Recipe for vhost-user-rng -blk and -input"
HOMEPAGE = "http://qemu.org"
LICENSE = "GPL-2.0-only & LGPL-2.1-only"
LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \
file://COPYING.LIB;endline=24;md5=8c5efda6cf1e1b03dcfd0e6c0d271c7f"
inherit pkgconfig
DEPENDS = "glib-2.0 zlib pixman bison-native ninja-native"
SRC_URI = "git://git.virtualopensystems.com/virtio-loopback/qemu.git;protocol=https;branch=beta-release \
file://0001-Add-NULL-array-terminate-entry-for-arg-parsing-optio.patch \
"
SRCREV = "bf75006d5415b4e485f0bc30b8d7461b3616e9ca"
S = "${WORKDIR}/git"
UPSTREAM_CHECK_REGEX = "qemu-(?P<pver>\d+(\.\d+)+)\.tar"
# Per https://lists.nongnu.org/archive/html/qemu-devel/2020-09/msg03873.html
# upstream states qemu doesn't work without optimization
DEBUG_BUILD = "0"
export LIBTOOL="${HOST_SYS}-libtool"
B = "${WORKDIR}/build"
do_configure() {
unset bindir libdir mandir datadir includedir libexecdir
# Pass empty --cross-prefix to suspend errors due to build configurations
# on different architectures. CC/CXX and other build variables are set by Yocto
# itself correct.
${S}/configure --cross-prefix=
}
do_configure[cleandirs] += "${B}"
do_install() {
mkdir ${D}/usr/bin/ -p
install -m 0755 ${S}/../build/contrib/vhost-user-input/vhost-user-input ${D}/usr/bin/
install -m 0755 ${S}/../build/contrib/vhost-user-blk/vhost-user-blk ${D}/usr/bin/
install -m 0755 ${S}/../build/tools/vhost-user-rng/vhost-user-rng ${D}/usr/bin/
}
FILES:${PN} += "/usr/bin"
RDEPENDS:${PN}:class-target += "bash"
DISABLE_STATIC = ""
|