Files
guru/media-sound/subtui/subtui-2.13.1.ebuild
2026-03-26 13:55:29 +00:00

31 lines
700 B
Bash

# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="A lightweight Subsonic TUI music player built in Go with scrobbling support."
HOMEPAGE="https://github.com/MattiaPun/SubTUI"
SRC_URI="https://github.com/MattiaPun/SubTUI/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://codeberg.org/ceres-sees-all/guru-distfiles/releases/download/${P}-deps.tar.xz/${P}-deps.tar.xz"
S="${WORKDIR}/SubTUI-${PV}"
LICENSE="MIT"
LICENSE+=" BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
DEPEND="media-video/mpv"
RDEPEND="${DEPEND}"
src_compile() {
ego build .
}
src_install() {
dobin SubTUI
dodoc README.md
}