Files
guru/sys-process/iotop-c/iotop-c-1.15.ebuild
Zamarin Arthur 0248c17276 sys-process/iotop-c: bump v1.15
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Zamarin Arthur <arthurzam@gmail.com>
2020-10-12 09:25:22 +03:00

30 lines
549 B
Bash

# Copyright 1999-2020 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
}