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

EAPI=8

inherit git-r3

DESCRIPTION="Master wrappper for all my gentoo TUI scripts"
HOMEPAGE="https://gitlab.com/masterwolf/gentui"
EGIT_REPO_URI="https://gitlab.com/masterwolf/gentui.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
    app-portage/pupgrade
    app-portage/tuiemerge
"
# DEPEND: What is needed to BUILD (not much for a script)
DEPEND="${RDEPEND}"
BDEPEND=""

src_install() {
    
    dobin gentui
    
}