blob: 8f9dfb0b0b80b0d1ee878da9274679bc55d7010f (
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
|
# 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)
}
|