Skip to content

Commit

Permalink
media-sound/deinvert: initial import
Browse files Browse the repository at this point in the history
tool to deinvert voice inversion scrambling

Package-Manager: Portage-2.3.24, Repoman-2.3.6
  • Loading branch information
ZeroChaos- committed Mar 5, 2018
1 parent 23c2908 commit 3165f77
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
31 changes: 31 additions & 0 deletions media-sound/deinvert/deinvert-9999.ebuild
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)
}
12 changes: 12 additions & 0 deletions media-sound/deinvert/metadata.xml
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>

0 comments on commit 3165f77

Please sign in to comment.