commit: 4dc7798d8d614c4f4e5050ec3be2e2c0fb33481d Author: Ryan Wong <juan <AT> juancord <DOT> xyz> AuthorDate: Wed Jan 29 09:33:44 2025 +0000 Commit: David Roman <davidroman96 <AT> gmail <DOT> com> CommitDate: Wed Jan 29 09:33:44 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4dc7798d
media-sound/rsgain: add 3.5.3 Signed-off-by: Ryan Wong <juan <AT> juancord.xyz> media-sound/rsgain/Manifest | 1 + media-sound/rsgain/rsgain-3.5.3.ebuild | 38 ++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/media-sound/rsgain/Manifest b/media-sound/rsgain/Manifest index 601f3ce9b..f4c66c8ae 100644 --- a/media-sound/rsgain/Manifest +++ b/media-sound/rsgain/Manifest @@ -1 +1,2 @@ DIST rsgain-3.5.1-source.tar.xz 50776 BLAKE2B 1568ff87c11e806875ae728cd2c4e80a2fc60b8db7c1dd1f9de4a119ced0547253febda748f514906ae4a78eadec6be62a365999820fb0ed4e656656ded53475 SHA512 6339c9ed8fd120b21026a55a5ec14605d3bc0b9bc87d975f9eff274023f58fdeaa8cf23b928fc3d34a38d7f2a1e5ad8786d114e21b4e42a8445dc6ec6117d32e +DIST rsgain-3.5.3-source.tar.xz 51720 BLAKE2B ea996a8208d4cc9982d05f90abe9b9eabbdea49dbe03a10be353af52038efa9067b3ec1e2adf73ffca351dadc3bbd5565e51037f0d47251a3269a5938609c165 SHA512 1ef66e55855a25626e577d870d88556b65263e254daf065f84eac02959eef1cb9d60ed4dc5c0253e49e6e4f877363f4ea9a9b4bb205331e2886d97f7b4e39235 diff --git a/media-sound/rsgain/rsgain-3.5.3.ebuild b/media-sound/rsgain/rsgain-3.5.3.ebuild new file mode 100644 index 000000000..cdb9ec2c4 --- /dev/null +++ b/media-sound/rsgain/rsgain-3.5.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Really Simple replay Gain calculator for tagging audio files" +HOMEPAGE="https://github.com/complexlogic/rsgain" +SRC_URI="https://github.com/complexlogic/rsgain/releases/download/v${PV}/${P}-source.tar.xz" + +LICENSE="BSD BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + dev-libs/inih + dev-libs/libfmt + media-libs/libebur128 + media-libs/libogg + media-libs/libvorbis + media-libs/taglib + media-video/ffmpeg +" + +DEPEND="${RDEPEND}" + +src_prepare() { + cmake_src_prepare +} + +src_configure() { + cmake_src_configure +} + +src_install() { + cmake_src_install +}
