2020-07-08 23:41:37 -04:00
|
|
|
# Copyright 2020 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
|
|
|
|
|
|
|
EGIT_REPO_URI="https://github.com/grejppi/bitrot.git"
|
2020-09-11 20:00:56 -04:00
|
|
|
PYTHON_COMPAT=( python3_6 python3_7 python3_8 )
|
2020-07-08 23:41:37 -04:00
|
|
|
PYTHON_REQ_USE="threads(+)"
|
|
|
|
|
|
|
|
inherit git-r3 python-any-r1 waf-utils
|
|
|
|
|
|
|
|
DESCRIPTION="Audio effect plugins (LV2, VST2, LADSPA) for glitch effects"
|
|
|
|
HOMEPAGE="https://github.com/grejppi/bitrot"
|
|
|
|
LICENSE="Apache-2.0"
|
|
|
|
SLOT="0"
|
|
|
|
|
|
|
|
DEPEND="${PYTHON_DEPS}"
|
2020-08-14 22:03:30 -04:00
|
|
|
|
|
|
|
src_install() {
|
|
|
|
waf-utils_src_install
|
|
|
|
mv "${D}/usr/lib" "${D}/usr/$(get_libdir)"
|
|
|
|
}
|