dev-go/dns: Correcting install path
Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr>
This commit is contained in:
parent
2767158b9c
commit
a553e0354e
|
@ -5,7 +5,7 @@ EAPI=7
|
||||||
|
|
||||||
EGO_PN="github.com/miekg/${PN}"
|
EGO_PN="github.com/miekg/${PN}"
|
||||||
|
|
||||||
inherit go-module
|
inherit golang-base go-module
|
||||||
|
|
||||||
EGO_SUM=(
|
EGO_SUM=(
|
||||||
"golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2"
|
"golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2"
|
||||||
|
@ -52,6 +52,11 @@ RDEPEND="${DEPEND}"
|
||||||
BDEPEND=""
|
BDEPEND=""
|
||||||
|
|
||||||
src_compile() {
|
src_compile() {
|
||||||
env GOBIN="${S}/bin" go install ./... ||
|
go build -o ${PN} . || die
|
||||||
die "compile failed"
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
insinto $(get_golibdir)
|
||||||
|
doins dns
|
||||||
|
einstalldocs
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue