mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 06:32:34 +02:00
Currently every Go package will end with GNU_HASH in the ELF binary however adding it to every recipe is cumbersome so instead we handle that here. (From OE-Core rev: 6699e668413c10704ffa8094b3dca67a9b88422a) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
430 B
BlitzBasic
17 lines
430 B
BlitzBasic
SUMMARY = "Dependency management tool for Golang"
|
|
HOMEPAGE = "https://github.com/golang/dep"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=1bad315647751fab0007812f70d42c0d"
|
|
|
|
GO_IMPORT = "github.com/golang/dep"
|
|
SRC_URI = "git://${GO_IMPORT}"
|
|
|
|
# Points to 0.3.0 tag
|
|
SRCREV = "7a91b794bbfbf1f3b8b79823799316451127801b"
|
|
|
|
inherit go
|
|
|
|
GO_INSTALL = "${GO_IMPORT}/cmd/dep"
|
|
|
|
RDEPENDS_${PN}-dev += "bash"
|