meta-virtualization/recipes-devtools/go/go-md2man_git.bb
Bruce Ashfield 5b35a014bd go-md2man: export GO111MODULE=off
With the latest go version bump in oe-core export GO111MODULE is
on by default. Our build is not setup to use go modules, so we
disable it and avoid configuration errors:

      no required module provides package ... : working directory is not part of a module

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2021-03-01 12:13:31 -05:00

24 lines
543 B
BlitzBasic

DESCRIPTION = "A markdown to manpage generator."
HOMEPAGE = "https://github.com/cpuguy83/go-md2man"
SECTION = "devel/go"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE.md;md5=80794f9009df723bbc6fe19234c9f517"
BBCLASSEXTEND = "native"
GO_IMPORT = "github.com/cpuguy83/go-md2man"
#GO_INSTALL = "${GO_IMPORT}/bin/go-md2man"
SRC_URI = "git://${GO_IMPORT}.git"
SRCREV = "f79a8a8ca69da163eee19ab442bedad7a35bba5a"
PV = "1.0.10+git${SRCPV}"
S = "${WORKDIR}/git"
inherit go
do_compile_prepend() {
export GO111MODULE=off
}