Files
guru/sys-process/iotop-c/iotop-c-0_pre20140824.ebuild
Andrew Ammerlaan 4f2f4d28f8 sys-process/iotop-c: use _pre naming format
to adhere to the gentoo ebuild naming guidelines

Package-Manager: Portage-2.3.98, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
2020-04-09 15:34:01 +02:00

26 lines
542 B
Bash

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