Files
guru/sys-process/iotop-c/iotop-c-2014.08.24.ebuild
Zamarin Arthur 53c58a35ea sys-process/iotop-c: top utility for IO (C port)
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>
2019-04-09 20:29:52 +03:00

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
}