91 lines
2.3 KiB
Bash
91 lines
2.3 KiB
Bash
# Template file for 'lsp-plugins'
|
|
pkgname=lsp-plugins
|
|
version=1.2.14
|
|
revision=2
|
|
build_style=gnu-makefile
|
|
make_use_env=yes
|
|
make_build_args="VERBOSE=0"
|
|
hostmakedepends="pkg-config php lv2"
|
|
makedepends="lv2 libglvnd-devel jack-devel libsndfile-devel
|
|
libXrandr-devel cairo-devel freetype-devel"
|
|
depends="lsp-plugins-libs lsp-plugins-xdg
|
|
lsp-plugins-clap lsp-plugins-ladspa lsp-plugins-lv2 lsp-plugins-vst2"
|
|
short_desc="Collection of open-source audio plugins for studios"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://lsp-plug.in/"
|
|
changelog="https://raw.githubusercontent.com/sadko4u/lsp-plugins/master/CHANGELOG"
|
|
distfiles="https://github.com/sadko4u/lsp-plugins/releases/download/$version/lsp-plugins-src-${version}.tar.gz"
|
|
checksum=1a3359ee8b8a82971bd7e9eeabe43f58ce6b4a4793d85fb16f97b100e4edee9a
|
|
nocross="Build system doesn't support cross-compilation properly"
|
|
|
|
do_configure() {
|
|
make LD="$CXX" PREFIX=/usr config
|
|
}
|
|
|
|
lsp-plugins-libs_package() {
|
|
short_desc+=" - main libraries"
|
|
pkg_install() {
|
|
vmove usr/lib/liblsp-r3d-glx-lib*.so
|
|
vmove usr/lib/lsp-plugins/liblsp-plugins-jack*.so
|
|
}
|
|
}
|
|
|
|
lsp-plugins-xdg_package() {
|
|
short_desc+=" - XDG integration"
|
|
pkg_install() {
|
|
vmove usr/share/applications
|
|
vmove usr/share/desktop-directories
|
|
vmove usr/share/icons
|
|
vmove etc/xdg/menus/applications-merged
|
|
}
|
|
}
|
|
|
|
lsp-plugins-clap_package() {
|
|
short_desc+=" - clap integrations"
|
|
depends="${sourcepkg}-libs>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/lib/clap
|
|
}
|
|
}
|
|
|
|
lsp-plugins-ladspa_package() {
|
|
short_desc+=" - ladspa integration"
|
|
depends="${sourcepkg}-libs>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/lib/ladspa
|
|
}
|
|
}
|
|
|
|
lsp-plugins-lv2_package() {
|
|
short_desc+=" - lv2 plugins"
|
|
depends="lv2>=0.6.0 ${sourcepkg}-libs>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/lib/lv2
|
|
}
|
|
}
|
|
|
|
lsp-plugins-vst2_package() {
|
|
short_desc+=" - vst2 plugins"
|
|
depends="${sourcepkg}-libs>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/lib/vst
|
|
}
|
|
}
|
|
|
|
lsp-plugins-doc_package() {
|
|
short_desc+=" - documentation"
|
|
pkg_install() {
|
|
vmove usr/share/doc
|
|
}
|
|
}
|
|
|
|
lsp-plugins-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/liblsp-r3d-glx-lib*.a
|
|
}
|
|
}
|