# Copyright 2026 Gabriel Sanches
# Distributed under the terms of the ISC License

EAPI=8

inherit go-module

DESCRIPTION="OpenTofu language server"
HOMEPAGE="
	https://opentofu.org
	https://github.com/opentofu/${PN}
"

SRC_URI="
	https://github.com/opentofu/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
	https://github.com/gbrlsnchs/ebuilds-archive/releases/download/${P}/${P}-vendor.tar.xz
"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"

src_compile() {
	ego build -o ${PN} -v .
}

src_install() {
	dobin ${PN}

	default
}