aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-devtools/go/go-md2man_git.bb
blob: 1d96bb1b84cb9f2f624d0eead98649ada33ccc3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;branch=master;protocol=https"

SRCREV = "f79a8a8ca69da163eee19ab442bedad7a35bba5a"
PV = "1.0.10+git"

S = "${WORKDIR}/git"

inherit go

do_compile:prepend() {
	export GO111MODULE=off
}