55 lines
945 B
Bash
55 lines
945 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit git-r3 meson
|
|
|
|
DESCRIPTION="A highly automated and intuitive digital audio
|
|
workstation"
|
|
HOMEPAGE="https://www.zrythm.org/en/index.html"
|
|
EGIT_REPO_URI="https://gitlab.zrythm.org/zrythm/zrythm.git"
|
|
EGIT_BRANCH="v1"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
IUSE=""
|
|
REQUIRED_USE=""
|
|
|
|
|
|
RDEPEND="
|
|
dev-scheme/guile:2.2
|
|
media-libs/soxr
|
|
gui-libs/libpanel
|
|
gui-libs/libadwaita[vala]
|
|
media-libs/lv2
|
|
dev-libs/sord
|
|
media-libs/sratom
|
|
media-libs/lilv
|
|
sci-libs/fftw[threads]
|
|
gui-libs/gtksourceview
|
|
media-sound/carla
|
|
media-libs/vamp-plugin-sdk
|
|
media-libs/rubberband
|
|
sys-libs/libbacktrace
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
# S="${WORKDIR}/${P}"
|
|
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
-Dx11=disabled
|
|
-Dpulse=enabled
|
|
-Djack=disabled
|
|
)
|
|
|
|
meson_src_configure
|
|
}
|
|
#
|
|
# src_install() {
|
|
# meson_src_install
|
|
# rm -r ${D}/usr/share/doc/vala-panel-appmenu
|
|
# }
|