gentoo-ebuilds/media-sound/wavsplit/wavsplit-1.2.1-r3.ebuild
Sam James 8ec09a3912
media-sound/wavsplit: Stabilize 1.2.1-r3 x86, #966920
Signed-off-by: Sam James <sam@gentoo.org>
2025-12-01 06:43:20 +00:00

39 lines
806 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Simple command line tool to split WAV files"
HOMEPAGE="https://sourceforge.net/projects/wavsplit/"
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
#-sparc, -amd64: 1.0: "Only supports PCM wave format" error message.
KEYWORDS="amd64 -sparc x86"
PATCHES=(
"${FILESDIR}"/${P}-Makefile.patch
"${FILESDIR}"/${P}-large-files.patch
"${FILESDIR}"/${P}-64bit.patch
"${FILESDIR}"/${P}-gcc15.patch
)
src_prepare() {
default
emake clean
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_test() { :; } #294302
src_install() {
dobin wav{ren,split}
doman wav{ren,split}.1
dodoc BUGS CHANGES CREDITS README{,.wavren}
}