mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 03:53:22 -04:00
to adhere to the gentoo ebuild naming guidelines Package-Manager: Portage-2.3.98, Repoman-2.3.22 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
26 lines
542 B
Bash
26 lines
542 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
MY_COMMIT="cadd9675822cc02eace137eb918a4362c69bec9e"
|
|
|
|
DESCRIPTION="top utility for IO (C port)"
|
|
HOMEPAGE="https://github.com/Tomas-M/iotop"
|
|
SRC_URI="https://github.com/Tomas-M/iotop/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="sys-libs/ncurses:=
|
|
!sys-process/iotop"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}/iotop-${MY_COMMIT}"
|
|
|
|
src_install() {
|
|
dobin iotop
|
|
dodoc README.md
|
|
}
|