gentoo/dev-util/FlameGraph/FlameGraph-1.0_p20210830.ebuild
Michał Górny 1b39922b75
Move {virtual → app-alternatives}/awk
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2022-12-02 04:47:22 +01:00

33 lines
669 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Visualization of hierarchical data, especially profiled stack traces"
HOMEPAGE="https://www.brendangregg.com/flamegraphs.html https://github.com/brendangregg/FlameGraph"
if [[ ${PV} == "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/brendangregg/FlameGraph.git"
else
SRC_URI="https://dev.gentoo.org/~flow/distfiles/${PN}/${P}.tar.gz"
KEYWORDS="amd64 x86"
fi
LICENSE="CDDL"
SLOT="0"
RDEPEND="
dev-lang/perl
app-alternatives/awk
"
src_test() {
./test.sh || die
}
src_install() {
dobin *.pl *.awk
dodoc README.md
}