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

bitbake has been enhanced such that SRCPV is no longer needed in PV to handle updating git hashes and task signatures. We can simplify our PV by dropping SRCPV Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
32 lines
956 B
BlitzBasic
32 lines
956 B
BlitzBasic
DESCRIPTION = "Go bindings to systemd socket activation, journal, D-Bus, and unit files"
|
|
HOMEPAGE = "https://github.com/coreos/go-systemd"
|
|
SECTION = "devel/go"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=19cbd64715b51267a47bf3750cc6a8a5"
|
|
|
|
SRCNAME = "systemd"
|
|
|
|
PKG_NAME = "github.com/coreos/go-${SRCNAME}"
|
|
SRC_URI = "git://${PKG_NAME}.git;branch=main;protocol=https"
|
|
|
|
SRCREV = "b4a58d95188dd092ae20072bac14cece0e67c388"
|
|
PV = "4+git"
|
|
|
|
RDEPENDS:${PN} += "bash"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
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_systemd_sysroot_preprocess"
|
|
|
|
go_systemd_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}/*"
|