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

EAPI=8

inherit git-r3

DESCRIPTION="TUI and CLI wrappers for Gentoo system upgrades"
HOMEPAGE="https://gitlab.com/masterwolf/tuiemerge"
EGIT_REPO_URI="https://gitlab.com/masterwolf/tuiemerge.git"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

# RDEPEND: What is needed to RUN the script
RDEPEND="
    dev-util/dialog
    app-shells/bash
"
# DEPEND: What is needed to BUILD (not much for a script)
DEPEND="${RDEPEND}"
BDEPEND=""

src_install() {
    # Assuming your script is named 'tuipupgrade' in the repo root
    dobin tuiemerge
    
}