mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 07:39:49 +02:00
The go class has its own fork of the base unpack code. At the time I was
told this was fine, it now isn't as that code is changing.
Rather than have a fork, put the path magic into a variable and then go
recipes can just set SRC_URI appropriately, e.g.:
git://go.googlesource.com/example;branch=master;protocol=https;destsuffix=${GO_SRCURI_DESTSUFFIX}
This avoids having special case hacks in the class and makes everything
a little more obvious.
(From OE-Core rev: cc4ec43a2b657fb4c58429ab14f1edc2473c1327)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
664 B
BlitzBasic
23 lines
664 B
BlitzBasic
SUMMARY = "This is a simple example recipe that cross-compiles a Go program."
|
|
SECTION = "examples"
|
|
HOMEPAGE = "https://golang.org/"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
SRC_URI = "git://go.googlesource.com/example;branch=master;protocol=https;destsuffix=${GO_SRCURI_DESTSUFFIX}"
|
|
SRCREV = "32022caedd6a177a7717aa8680cbe179e1045935"
|
|
UPSTREAM_CHECK_COMMITS = "1"
|
|
|
|
GO_IMPORT = "golang.org/x/example"
|
|
GO_INSTALL = "${GO_IMPORT}/hello"
|
|
|
|
export GO111MODULE="off"
|
|
|
|
inherit go
|
|
|
|
# This is just to make clear where this example is
|
|
do_install:append() {
|
|
mv ${D}${bindir}/hello ${D}${bindir}/${BPN}
|
|
}
|