mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 07:33:19 -04:00
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Zamarin Arthur <arthurzam@gmail.com>
30 lines
549 B
Bash
30 lines
549 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="top utility for IO (C port)"
|
|
HOMEPAGE="https://github.com/Tomas-M/iotop"
|
|
SRC_URI="https://github.com/Tomas-M/iotop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="sys-libs/ncurses:=
|
|
!sys-process/iotop"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
S="${WORKDIR}/iotop-${PV}"
|
|
|
|
src_compile() {
|
|
emake V=1
|
|
}
|
|
|
|
src_install() {
|
|
dobin iotop
|
|
dodoc README.md
|
|
doman iotop.8
|
|
}
|