44 lines
819 B
Bash
44 lines
819 B
Bash
|
# Copyright 2021 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=7
|
||
|
|
||
|
if [[ ${PV} != *9999* ]]; then
|
||
|
SRC_URI="https://github.com/sjaehn/BSlizr/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
KEYWORDS="~amd64"
|
||
|
else
|
||
|
inherit git-r3
|
||
|
EGIT_REPO_URI="https://github.com/sjaehn/BSlizr.git"
|
||
|
fi
|
||
|
|
||
|
DESCRIPTION="Sequenced audio slicing effect LV2 plugin"
|
||
|
HOMEPAGE="https://x42-plugins.com/x42/x42-midifilter"
|
||
|
LICENSE="GPL-3"
|
||
|
SLOT="0"
|
||
|
|
||
|
DEPEND="
|
||
|
media-libs/lv2
|
||
|
x11-libs/cairo[X]
|
||
|
"
|
||
|
RDEPEND="${DEPEND}"
|
||
|
BDEPEND="
|
||
|
virtual/pkgconfig
|
||
|
"
|
||
|
|
||
|
src_unpack() {
|
||
|
if test ${PV} != 9999; then
|
||
|
default
|
||
|
mv "BSlizr-${PV}" "${P}"
|
||
|
else
|
||
|
git-r3_src_unpack
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
emake STRIP="true" # Disable stripping
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
emake DESTDIR="${D}" PREFIX="/usr" LV2DIR="/usr/$(get_libdir)/lv2" install
|
||
|
}
|