Files
guru/sys-process/iotop-c/iotop-c-1.16.ebuild
Zamarin Arthur 6aedebd043 sys-process/iotop-c: bump v1.16
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Zamarin Arthur <arthurzam@gmail.com>
2021-01-29 08:44:18 +02:00

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
}