media-sound/supersonic: add 0.18.1

Signed-off-by: David Roman <davidroman96@gmail.com>
This commit is contained in:
David Roman
2025-09-15 10:55:38 +02:00
parent 64e7325a50
commit 33bf9d2306
2 changed files with 42 additions and 0 deletions

View File

@@ -2,3 +2,5 @@ DIST supersonic-0.17.0-vendor.tar.xz 8043100 BLAKE2B b7f744a100b6c357bcbd39d9167
DIST supersonic-0.17.0.tar.gz 63722741 BLAKE2B ef946042400f647c266cd638deb3879c9a188f46e984b3ecf4183bb7b6c4d7c45d8062adad2d19b5036fafbea08d2bbdf6bd9d43784cad17364d47456719fdb5 SHA512 4ecb302e2c82a2d4e789feeffaa5492ee2ae3908d598f9944e92b57c0e09e37e79c63d5a9bb90e5eb98e104e6f6f20e3a506f07929084fbdb0ce6dd6bed9e9cb
DIST supersonic-0.18.0-vendor.tar.xz 8077088 BLAKE2B 4afacce9850e1c3d6036df1a82d216b34085836e2c639adcdc8fa3a4a1b97ec3976c3e4756505d22a58aa67eb4f57555f90397cb04b65b266a089e434c4c17d5 SHA512 251c736b56711eacb03a1bc0f34034fb2d82e2d2f7452d26f2536c91f7c83dcd7d9d0be22d2d1c0d364ec4f688b8fd3c8146619a8dcadd25d4c12f64ca6f81a6
DIST supersonic-0.18.0.tar.gz 63744839 BLAKE2B f5e57b49c43a677130557885027c1062056bae4600a98af06fbad1559755c1cb025f24b366fa3f59f83d8139d948e63ef50f9f1623cf227d824ec2a105340807 SHA512 1e6c5029a0f5b7b662fdb4672f3436e388d8236381f4740d357fd9525cc84d5bbd3c167d8691ad1052342d6f3503d1ebbc365e9a13b935c2806dc6db5c9f8365
DIST supersonic-0.18.1-vendor.tar.xz 8071468 BLAKE2B a17c668221ad5b222c9ee92ee7d1454a8b11f3dff12e694019bc904d095191804b7aeba383f98b2f5d9a31bef7b058c0bd72aabc13c77d3e62fe146aba37bcae SHA512 8151bfa527ddf60904b8ded67b1fcd1636995a3943062763747dba7f9ae68df6c94016192b9cf2aece9076f0527ed5ec5fe4b3bfda8435ba9546964a98b9f360
DIST supersonic-0.18.1.tar.gz 63734864 BLAKE2B 3652b5099b278cb1fef3df94025b970c9fba971e6b2cc2ab1c81c52bb1c7674a2ef0eb3b1a2ccb182c9e8c9408919dd5134d0cab86e88d94f130906269161c1b SHA512 15e445131edda82e544187c0da0d63fb0fcb1632365f8caee477d54911336436c6266d72bed9eb14d267420daf759efa1bc0a4ec47f4b1ff357518fd061fd606

View File

@@ -0,0 +1,40 @@
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop go-module xdg
DESCRIPTION="A lightweight and full-featured cross-platform desktop client"
HOMEPAGE="https://github.com/dweymouth/supersonic"
SRC_URI="https://github.com/dweymouth/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://gentoo.kropotkin.rocks/go-pkgs/${P}-vendor.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
media-libs/libglvnd
media-video/mpv[libmpv]
x11-libs/libX11
x11-libs/libXcursor
x11-libs/libXi
x11-libs/libXinerama
"
RDEPEND="${DEPEND}"
src_compile() {
ego build
}
src_install() {
dobin supersonic
sed -i 's/supersonic-desktop/supersonic/g' "res/${PN}-desktop.desktop" || die
domenu "res/${PN}-desktop.desktop"
local x
for x in 128 256 512; do
newicon -s ${x} res/appicon-${x}.png supersonic.png
done
}