guru/app-shells/elvish/elvish-0.21.0.ebuild
Jonas Frei 79b418b77f
app-shells/elvish: add 0.21.0
Signed-off-by: Jonas Frei <freijon@pm.me>
2024-08-15 05:48:30 +02:00

41 lines
919 B
Bash

# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Expressive programming language and a versatile interactive shell"
HOMEPAGE="https://elv.sh/"
SRC_URI="https://github.com/elves/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
# Using a dependency tarball as per https://devmanual.gentoo.org/eclass-reference/go-module.eclass/index.html
DEPS_URI="https://gitlab.com/freijon_gentoo/${CATEGORY}/${PN}/-/raw/main/${P}-deps.tar.xz"
SRC_URI+=" ${DEPS_URI}"
LICENSE="BSD-2"
# Additional licenses used in the package
LICENSE+=" BSD EPL-1.0 CC-BY-SA-4.0"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="test"
DOCS=(
"README.md"
)
HTML_DOCS=(
"website/learn"
"website/ref"
)
src_compile() {
ego build -ldflags "-X src.elv.sh/pkg/buildinfo.BuildVariant=gentoo-guru" "./cmd/${PN}"
}
src_install() {
dobin "${PN}"
einstalldocs
}