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/deinvert: initial import
tool to deinvert voice inversion scrambling Package-Manager: Portage-2.3.24, Repoman-2.3.6
- Loading branch information
1 parent
23c2908
commit 3165f77
Showing
2 changed files
with
43 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
inherit git-r3 autotools | ||
|
||
DESCRIPTION="A voice inversion descrambler" | ||
HOMEPAGE="https://github.com/windytan/deinvert" | ||
SRC_URI="" | ||
EGIT_REPO_URI="https://github.com/windytan/deinvert.git" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="" | ||
IUSE="+liquid +wav" | ||
|
||
DEPEND="liquid? ( net-libs/liquid-dsp ) | ||
wav? ( media-libs/libsndfile ) | ||
" | ||
RDEPEND="${DEPEND}" | ||
|
||
src_prepare() { | ||
eapply_user | ||
eautoreconf | ||
} | ||
|
||
src_configure() { | ||
econf \ | ||
$(use_with liquid) \ | ||
$(use_with wav sndfile) | ||
} |
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,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Radio</name> | ||
</maintainer> | ||
<use> | ||
<flag name="liquid">improve sound quality using <pkg>net-libs/liquid-dsp</pkg></flag> | ||
<flag name="wav">wav file support using <pkg>media-libs/libsndfile</pkg></flag> | ||
</use> | ||
</pkgmetadata> |