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

We are now using vendoring from the upstream repos, or creating our own vendor directory. We no longer need these source only recipes. Add an inherit to each recipe to warn that it will be removed in the future. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
32 lines
940 B
BlitzBasic
32 lines
940 B
BlitzBasic
DESCRIPTION = "Primitives for identity and authorization"
|
|
HOMEPAGE = "https://github.com/docker/libtrust"
|
|
SECTION = "devel/go"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=435b266b3899aa8a959f17d41c56def8"
|
|
|
|
SRCNAME = "libtrust"
|
|
|
|
PKG_NAME = "github.com/docker/${SRCNAME}"
|
|
SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https"
|
|
|
|
SRCREV = "9cbd2a1374f46905c68a4eb3694a130610adc62a"
|
|
PV = "0.0+git"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit meta-virt-depreciated-warning
|
|
|
|
do_install() {
|
|
install -d ${D}${prefix}/local/go/src/${PKG_NAME}
|
|
cp -r ${S}/* ${D}${prefix}/local/go/src/${PKG_NAME}/
|
|
}
|
|
|
|
SYSROOT_PREPROCESS_FUNCS += "go_libtrust_sysroot_preprocess"
|
|
|
|
go_libtrust_sysroot_preprocess () {
|
|
install -d ${SYSROOT_DESTDIR}${prefix}/local/go/src/${PKG_NAME}
|
|
cp -r ${D}${prefix}/local/go/src/${PKG_NAME} ${SYSROOT_DESTDIR}${prefix}/local/go/src/$(dirname ${PKG_NAME})
|
|
}
|
|
|
|
FILES:${PN} += "${prefix}/local/go/src/${PKG_NAME}/*"
|