gentoo/dev-lang/cue/cue-0.14.1.ebuild
William Hubbs 76ee8e79fe
dev-lang/cue: add 0.14.1
Closes: https://bugs.gentoo.org/962701
Signed-off-by: William Hubbs <williamh@gentoo.org>
2025-09-15 11:58:30 -05:00

25 lines
539 B
Bash

# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="open-source data validation language and inference engine"
HOMEPAGE="https://cuelang.org"
SRC_URI="https://github.com/cue-lang/cue/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
src_compile() {
ego build -o bin/cue ./cmd/cue
}
src_install() {
dobin bin/*
einstalldocs
dodoc -r doc
}