portage/dev-util/goreleaser/goreleaser-9999.ebuild
Sam Therapy df2b24dd5e
dev-util/goreleaser: add correct licenses
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2023-02-17 16:47:43 +01:00

32 lines
732 B
Bash

# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit git-r3 go-module
DESCRIPTION="Deliver Go binaries as fast and easily as possible"
HOMEPAGE="https://github.com/goreleaser/goreleaser https://goreleaser.com/"
EGIT_REPO_URI="https://github.com/goreleaser/goreleaser.git"
RESTRICT="network-sandbox strip"
LICENSE="MIT BSD BSD-2 Apache-2.0 MPL-2.0"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~arm64 ~x86"
src_unpack() {
default
git-r3_src_unpack
go-module_live_vendor
}
src_compile() {
ego build -ldflags "-s -w -X main.version=${PV} -X main.date=$(date -I) -X main.commit=$(git-r3_peek_remote_ref) -X main.builtBy=portage" .
}
src_install() {
dobin ./${PN}
}