media-sound/pipemixer: new package

Add pipemixer, a lightweight TUI volume control for PipeWire.

Signed-off-by: Theron York <theron.york@cloudnuke.org>
This commit is contained in:
Theron York
2026-04-26 16:00:38 -05:00
parent 11350a6a77
commit 31638c6a2b
3 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST pipemixer-0.4.3.tar.gz 78514 BLAKE2B b6180bed3cbf93bfe531bbb667679cc673e05f5a3fe1af0687787b6c08afe54f5f06fd91303ce3c12fe3db04bed8941fa3a4b2d9d6d333ba923c18100b5683f0 SHA512 ae0dcb027207cb2468dd06785c180f855331d1587a3ebc909de5c98ac423def96447e5015b01d385b3c753620a4a600c83129d55d159b9c87079efb413128700

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<name>Theron York</name>
<email>theron.york@cloudnuke.org</email>
</maintainer>
<upstream>
<remote-id type="github">heather7283/pipemixer</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,28 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Lightweight TUI volume control for PipeWire"
HOMEPAGE="https://github.com/heather7283/pipemixer"
SRC_URI="https://github.com/heather7283/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-lang/rust
dev-util/meson
"
RDEPEND="${DEPEND}"
src_configure() {
meson_src_configure
}
pkg_postinst() {
elog "Run 'pipemixer' to start the TUI."
}