From bee03df8ad266e51571a2e1e71c7dd17bcc833b4 Mon Sep 17 00:00:00 2001 From: Techoraye Date: Wed, 24 Dec 2025 13:06:31 -0500 Subject: [PATCH] app-misc/metetch: add metetch-0.5.3 Fast system information display utility with modular customizable features. Includes support for GPU monitoring, disk storage, network info, and advanced CPU/hardware metrics with color-coded status indicators. Signed-off-by: Techoraye --- app-misc/metetch/metadata.xml | 11 +++++++ app-misc/metetch/metetch-0.5.3.ebuild | 43 +++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 app-misc/metetch/metadata.xml create mode 100644 app-misc/metetch/metetch-0.5.3.ebuild diff --git a/app-misc/metetch/metadata.xml b/app-misc/metetch/metadata.xml new file mode 100644 index 0000000000..f79b8c7b05 --- /dev/null +++ b/app-misc/metetch/metadata.xml @@ -0,0 +1,11 @@ + + + + + contact.techoraye@gmail.com + Mathieu Roberge + + + techoraye/metetch + + diff --git a/app-misc/metetch/metetch-0.5.3.ebuild b/app-misc/metetch/metetch-0.5.3.ebuild new file mode 100644 index 0000000000..e1ba2c9181 --- /dev/null +++ b/app-misc/metetch/metetch-0.5.3.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Fast system information display utility with modular customizable features" +HOMEPAGE="https://github.com/techoraye/metetch" +SRC_URI="https://github.com/techoraye/metetch/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=" + sys-libs/ncurses:= + net-misc/curl +" +DEPEND="${RDEPEND} + sys-libs/glibc +" +BDEPEND=" + virtual/pkgconfig +" + +S="${WORKDIR}/${PN}-${PV}" + +src_configure() { + local mycmakeargs=( + -DCMAKE_BUILD_TYPE=Release + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + + # Install license + einstalldocs + newdoc LICENSE LICENSE.MIT +}