You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-go/vend/vend-1.0.3.ebuild

22 lines
435 B

# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="dependency vendor for Go programs"
HOMEPAGE="https://github.com/nomad-software/vend"
SRC_URI="https://github.com/nomad-software/vend/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~riscv"
src_compile() {
ego build .
}
src_install() {
dobin vend
einstalldocs
}