blob: 6bca8544ecbd737e06d2cef342a1e7d9e0c21384 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Ping wrapper that produces coloured, easily readable output."
HOMEPAGE="http://denilson.sa.nom.br/prettyping/"
SRC_URI="https://github.com/denilsonsa/prettyping/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~x86"
RDEPEND="app-shells/bash
net-misc/iputils
virtual/awk"
src_install() {
dobin prettyping
}
|