mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-05 05:15:25 +02:00

With: https://lists.openembedded.org/g/bitbake-devel/message/17508 there are many WARNINGs from this layer will cover src_uri.inc files in next commit. Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
52 lines
1.4 KiB
BlitzBasic
52 lines
1.4 KiB
BlitzBasic
HOMEPAGE = "https://github.com/opencontainers/image-tools"
|
|
SUMMARY = "A collection of tools for working with the OCI image format specification"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
|
|
|
|
SRC_URI = "git://github.com/opencontainers/image-tools.git;branch=master;protocol=https;destsuffix=git/src/github.com/opencontainers/image-tools \
|
|
file://0001-config-make-Config.User-mapping-errors-a-warning.patch \
|
|
file://0001-tool-respect-GO-and-GOBUILDFLAGS-when-building.patch"
|
|
|
|
SRCREV = "11f9988298305d36f64248a6ee55318e60bf170b"
|
|
PV = "1.0.0-rc3+git"
|
|
GO_IMPORT = "import"
|
|
|
|
inherit goarch
|
|
inherit go
|
|
|
|
# This disables seccomp and apparmor, which are on by default in the
|
|
# go package.
|
|
EXTRA_OEMAKE = "BUILDTAGS=''"
|
|
|
|
S = "${WORKDIR}/git/src/github.com/opencontainers/image-tools"
|
|
|
|
COMPATIBLE_HOST:riscv64 = "null"
|
|
|
|
do_compile() {
|
|
export GOARCH="${TARGET_GOARCH}"
|
|
export GOROOT="${STAGING_LIBDIR}/go"
|
|
export GOPATH="${WORKDIR}/git/"
|
|
|
|
# Pass the needed cflags/ldflags so that cgo
|
|
# can find the needed headers files and libraries
|
|
export CGO_ENABLED="1"
|
|
export CFLAGS=""
|
|
export LDFLAGS=""
|
|
export CGO_CFLAGS="${TARGET_CFLAGS}"
|
|
export CGO_LDFLAGS="${TARGET_LDFLAGS}"
|
|
export GO111MODULE=off
|
|
|
|
export GOBUILDFLAGS="-trimpath"
|
|
|
|
cd ${S}
|
|
|
|
oe_runmake tool
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}/${sbindir}
|
|
install ${S}/oci-image-tool ${D}/${sbindir}/
|
|
}
|
|
|
|
INSANE_SKIP:${PN} += "ldflags textrel"
|