blob: 3a49284a4f4a11d95385ef62d25aef5f31a6193f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
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
)
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}
}
|