# Copyright 2025-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit go-module

DESCRIPTION="A TUI for interacting with the Jujutsu version control system"
HOMEPAGE="https://github.com/idursun/jjui"
SRC_URI="
	https://github.com/idursun/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
	https://distfiles.living180.net/${P}-vendor.tar.xz
"

LICENSE="BSD MIT"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="mirror"

BDEPEND="
	>=dev-lang/go-1.25.0
"

RDEPEND="
	>=dev-vcs/jj-0.36
"

src_compile() {
	ego build ./cmd/jjui
}

src_install() {
	dobin jjui

	default
}