mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 00:16:22 +01:00
29 lines
554 B
Bash
29 lines
554 B
Bash
# Copyright 1999-2024 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
inherit git-r3 autotools
|
|
|
|
DESCRIPTION="A voice inversion descrambler"
|
|
HOMEPAGE="https://github.com/windytan/deinvert"
|
|
EGIT_REPO_URI="https://github.com/windytan/deinvert.git"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
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)
|
|
}
|