mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00

As introduced in the oe-core post: https://lists.openembedded.org/g/openembedded-core/message/157623 SRC_URIs without an explicit branch will generate warnings, and eventually be an error. We run the provided conversion script to make sure that meta-virt is ready for the change. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
29 lines
862 B
BlitzBasic
29 lines
862 B
BlitzBasic
DESCRIPTION = "A powerful URL router and dispatcher for golang."
|
|
HOMEPAGE = "https://github.com/gorilla/mux"
|
|
SECTION = "devel/go"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=c50f6bd9c1e15ed0bad3bea18e3c1b7f"
|
|
|
|
SRCNAME = "mux"
|
|
|
|
PKG_NAME = "github.com/gorilla/${SRCNAME}"
|
|
SRC_URI = "git://${PKG_NAME}.git;branch=master"
|
|
|
|
SRCREV = "136d54f81f00414c45c3c68dd47e98cc97519c5e"
|
|
|
|
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_mux_sysroot_preprocess"
|
|
|
|
go_mux_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}/*"
|