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>
30 lines
876 B
BlitzBasic
30 lines
876 B
BlitzBasic
DESCRIPTION = "Native Go bindings for D-Bus"
|
|
HOMEPAGE = "https://github.com/godbus/dbus"
|
|
SECTION = "devel/go"
|
|
LICENSE = "BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=09042bd5c6c96a2b9e45ddf1bc517eed"
|
|
|
|
SRCNAME = "dbus"
|
|
|
|
PKG_NAME = "github.com/godbus/${SRCNAME}"
|
|
SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https"
|
|
|
|
SRCREV = "5f6efc7ef2759c81b7ba876593971bfce311eab3"
|
|
PV = "4.0.0+git"
|
|
|
|
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_dbus_sysroot_preprocess"
|
|
|
|
go_dbus_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}/*"
|