guru/dev-util/scc/scc-3.4.0.ebuild
Wu, Zhenyu e27290fd9b
dev-util/scc: add examples to IUSE
Signed-off-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
2024-11-08 13:51:56 +08:00

32 lines
611 B
Bash

# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="scc is a very fast accurate code counter"
HOMEPAGE="https://github.com/boyter/scc/tree/master"
SRC_URI="https://github.com/boyter/scc/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT Unlicense"
SLOT="0"
KEYWORDS="~amd64"
IUSE="examples"
RDEPEND="${DEPEND}"
DOCS="CONTRIBUTING.md LANGUAGES.md README.md"
src_compile() {
ego build
}
src_install() {
dobin scc
einstalldocs
if use examples; then
insinto "/usr/share/doc/${PF}"
doins -r examples
fi
}