Ryan Fox
f15b88fcbc
Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Ryan Fox <flewkey@2a03.party>
36 lines
690 B
Bash
36 lines
690 B
Bash
# Copyright 2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit meson
|
|
|
|
if [[ ${PV} != *9999* ]]; then
|
|
SRC_URI="https://git.sr.ht/~alextee/zplugins/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
S="${WORKDIR}/${PN}-v${PV}"
|
|
else
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://git.sr.ht/~alextee/zplugins"
|
|
fi
|
|
|
|
DESCRIPTION="A collection of audio DSP plugins"
|
|
HOMEPAGE="https://git.sr.ht/~alextee/zplugins"
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
DEPEND="
|
|
dev-scheme/guile
|
|
media-libs/libsndfile
|
|
x11-libs/ztoolkit[rsvg]
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND=""
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
"-Dlv2dir=$(get_libdir)/lv2"
|
|
)
|
|
meson_src_configure
|
|
}
|