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

EAPI=8

RUST_MIN_VER="1.88.0"

inherit cargo git-r3

DESCRIPTION="Displays statistics about Your code - files, comments, and blanks"
HOMEPAGE="https://github.com/XAMPPRocky/tokei/"

EGIT_REPO_URI="https://github.com/XAMPPRocky/${PN}"
EGIT_BRANCH="master"

LICENSE="MIT"
SLOT="0"

QA_FLAGS_IGNORED='.*'

src_unpack() {
	git-r3_src_unpack
	cargo_live_src_unpack
}

src_compile() {
	cargo_src_compile --frozen --verbose --bin "${PN}"
}

src_install() {
	cargo_src_install
	einstalldocs
}