mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
28 lines
618 B
Bash
28 lines
618 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
COMMIT="385f9e4cda592ace95b47c69db76553bcb6a42d6"
|
|
|
|
DESCRIPTION="A Munin plugin for monitoring ZFS on Linux"
|
|
HOMEPAGE="https://github.com/alexclear/ZoL-munin-plugin"
|
|
SRC_URI="https://github.com/alexclear/ZoL-munin-plugin/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
S=${WORKDIR}/ZoL-munin-plugin-${COMMIT}
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="net-analyzer/munin"
|
|
RDEPEND="${DEPEND}
|
|
app-alternatives/bc
|
|
"
|
|
|
|
src_install() {
|
|
dodoc README.md
|
|
|
|
exeinto /usr/libexec/munin/plugins
|
|
doexe zfs_stats_
|
|
}
|