media-sound/wavbreaker: add 0.16

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2022-12-20 19:13:35 +00:00
parent 065c312bf7
commit 4bf36d4170
2 changed files with 35 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST wavbreaker-0.15.tar.gz 380764 BLAKE2B e58645725ee831da8d9c231ba8a9715f5dc217f8a49737453430119d1920c53efea3dc0db0faf66d047e10ce3cdd9dc5918bd890f690d0c15ba4763cdfde1a0a SHA512 adc056b2d4117fcc95267033e21a015f7f7c900080c60f34a459f127badf79c3100a971059c0cd87210a68a5d08e38b03922bbfc505ec056e042209fc6523d7b
DIST wavbreaker-0.16.tar.gz 389319 BLAKE2B dea20ea4c3b1750f108dd2cfca86610d3bad12724645cc1ae89f05b33088460f0a41417a79cebd4196cf895004fddc5097751269f8b6cbb088a19d5a996478a0 SHA512 46f87dbbc38063b9a05b0d5cf77fe1bce3a5ea891596241fa442a45550e73cf2a27f0579c527a2a3e5909326a4cc1c80ca5119fd04c549dafaae71fe0646b168

View File

@@ -0,0 +1,34 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson xdg
DESCRIPTION="wavbreaker/wavmerge GTK+ utility to break or merge WAV files"
HOMEPAGE="https://wavbreaker.sourceforge.io/ https://github.com/thp/wavbreaker"
SRC_URI="https://github.com/thp/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="mp3 vorbis"
RDEPEND="
dev-libs/glib
media-libs/libao
x11-libs/gtk+:3
mp3? ( media-sound/mpg123 )
vorbis? ( media-libs/libvorbis )
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_configure() {
local emesonargs=(
$(meson_use mp3)
$(meson_use vorbis ogg_vorbis)
)
meson_src_configure
}