forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-sound/wavsplit: EAPI7 revbump, improve ebuild
Closes: https://bugs.gentoo.org/665234 Closes: gentoo#9777
- Loading branch information
Showing
4 changed files
with
50 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# 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="mirror://sourceforge/${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} | ||
} |