mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 20:08:43 -04:00
30 lines
655 B
Bash
30 lines
655 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit ecm
|
|
|
|
if [[ ${PV} = *9999* ]] ; then
|
|
EGIT_REPO_URI="https://github.com/dfaust/${PN}.git"
|
|
inherit git-r3
|
|
else
|
|
SRC_URI="https://github.com/dfaust/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
DESCRIPTION="Plasma 5 widget that displays the currently used network bandwidth."
|
|
HOMEPAGE="https://www.kde-look.org/p/998895/
|
|
https://github.com/dfaust/plasma-applet-netspeed-widget"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="5"
|
|
|
|
DEPEND="
|
|
kde-plasma/ksysguard:5
|
|
>=kde-frameworks/plasma-5.60.0:5
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
DOCS=( README.md )
|