diff options
-rw-r--r-- | meta/recipes-devtools/go/go-dep_0.3.0.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go-dep_0.3.0.bb b/meta/recipes-devtools/go/go-dep_0.3.0.bb new file mode 100644 index 0000000000..c65b4f7cb5 --- /dev/null +++ b/meta/recipes-devtools/go/go-dep_0.3.0.bb | |||
@@ -0,0 +1,18 @@ | |||
1 | SUMMARY = "Dependency management tool for Golang" | ||
2 | HOMEPAGE = "https://github.com/golang/dep" | ||
3 | LICENSE = "BSD-3-Clause" | ||
4 | LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=1bad315647751fab0007812f70d42c0d" | ||
5 | |||
6 | GO_IMPORT = "github.com/golang/dep" | ||
7 | SRC_URI = "git://${GO_IMPORT}" | ||
8 | |||
9 | # Points to 0.3.0 tag | ||
10 | SRCREV = "7a91b794bbfbf1f3b8b79823799316451127801b" | ||
11 | |||
12 | inherit go | ||
13 | |||
14 | GO_INSTALL = "${GO_IMPORT}/cmd/dep" | ||
15 | |||
16 | INSANE_SKIP_${PN} += "ldflags" | ||
17 | |||
18 | RDEPENDS_${PN}-staticdev += "bash" | ||