24 lines
551 B
Bash
24 lines
551 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/hannesbraun/airwindows-lv2.git"
|
|
else
|
|
SRC_URI="https://github.com/hannesbraun/airwindows-lv2/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
DESCRIPTION="A port of Airwindows plugins to LV2"
|
|
HOMEPAGE="https://github.com/hannesbraun/airwindows-lv2"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="media-libs/lv2"
|