mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
1659d38199
This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. I tried backporting Richard's master change but there where many merge conflicts. I went the lazy route and ran the script. This is work based on "b402a3076 recipes: Update SRC_URI branch and protocols" Signed-off-by: Armin Kuster <akuster808@gmail.com>
35 lines
1.2 KiB
BlitzBasic
35 lines
1.2 KiB
BlitzBasic
SUMMARY = "nbdkit is a toolkit for creating NBD servers."
|
|
DESCRIPTION = "NBD — Network Block Device — is a protocol \
|
|
for accessing Block Devices (hard disks and disk-like things) \
|
|
over a Network. \
|
|
\
|
|
nbdkit is a toolkit for creating NBD servers."
|
|
|
|
HOMEPAGE = "https://github.com/libguestfs/nbdkit"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=f9dcc2d8acdde215fa4bd6ac12bb14f0"
|
|
|
|
SRC_URI = "git://github.com/libguestfs/nbdkit.git;protocol=https;branch=master \
|
|
"
|
|
|
|
SRCREV = "babc2e2717c9025392dce613006a6ecae5886a57"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "curl xz e2fsprogs zlib"
|
|
|
|
# autotools-brokensep is needed as nbdkit does not support build in external directory
|
|
inherit pkgconfig python3native perlnative bash-completion autotools-brokensep
|
|
|
|
# Those are required to build standalone
|
|
EXTRA_OECONF = " --without-libvirt --without-libguestfs --disable-perl"
|
|
|
|
# Disable some extended support (not desired for small embedded systems)
|
|
#EXTRA_OECONF += " --disable-python"
|
|
#EXTRA_OECONF += " --disable-ocaml"
|
|
#EXTRA_OECONF += " --disable-rust"
|
|
#EXTRA_OECONF += " --disable-ruby"
|
|
#EXTRA_OECONF += " --disable-tcl"
|
|
#EXTRA_OECONF += " --disable-lua"
|
|
#EXTRA_OECONF += " --disable-vddk"
|