mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
Port of sys-process/iotop which is written in Python to the C language so it now runs without python at all. Last update was on 2014-08-24, but works perfectly, therefore made a snapshot package from the git repository. Licensed under GPL-2. Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Zamarin Arthur <arthurzam@gmail.com>
26 lines
542 B
Bash
26 lines
542 B
Bash
# Copyright 1999-2019 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
|
|
}
|