55 lines
1.1 KiB
Bash
55 lines
1.1 KiB
Bash
|
# Copyright 2021 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=7
|
||
|
|
||
|
inherit meson xdg-utils gnome2-utils
|
||
|
|
||
|
MY_PV="1.0.0-alpha.12.0.1"
|
||
|
MY_P="${PN}-${MY_PV}"
|
||
|
S="${WORKDIR}/${MY_P}"
|
||
|
SRC_URI="https://www.zrythm.org/releases/${MY_P}.tar.xz"
|
||
|
KEYWORDS="~amd64"
|
||
|
|
||
|
DESCRIPTION="Zrythm is a digital audio workstation designed to be featureful and easy to use."
|
||
|
HOMEPAGE="https://www.zrythm.org/"
|
||
|
LICENSE="GPL-3"
|
||
|
SLOT="0"
|
||
|
|
||
|
DEPEND="
|
||
|
app-arch/zstd
|
||
|
dev-libs/libcyaml
|
||
|
>=dev-libs/reproc-14.1.0
|
||
|
dev-scheme/guile
|
||
|
kde-frameworks/breeze-icons
|
||
|
media-libs/lilv
|
||
|
>=media-libs/libaudec-0.2.3
|
||
|
media-libs/chromaprint
|
||
|
media-libs/rubberband
|
||
|
sci-libs/fftw:*[threads]
|
||
|
x11-libs/gtk+:3
|
||
|
x11-libs/gtksourceview:*
|
||
|
"
|
||
|
RDEPEND="${DEPEND}"
|
||
|
BDEPEND="
|
||
|
>=dev-util/meson-0.55.0
|
||
|
"
|
||
|
|
||
|
src_install() {
|
||
|
DESTDIR="${D}" eninja -C "${BUILD_DIR}" install
|
||
|
}
|
||
|
|
||
|
pkg_postinst() {
|
||
|
xdg_mimeinfo_database_update
|
||
|
xdg_desktop_database_update
|
||
|
xdg_icon_cache_update
|
||
|
gnome2_schemas_update
|
||
|
}
|
||
|
|
||
|
pkg_postrm() {
|
||
|
xdg_mimeinfo_database_update
|
||
|
xdg_desktop_database_update
|
||
|
xdg_icon_cache_update
|
||
|
gnome2_schemas_update
|
||
|
}
|