43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
# Template file for 'lsp-plugins'
|
|
pkgname=lsp-plugins
|
|
version=1.2.14
|
|
revision=1
|
|
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"
|
|
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-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
|
|
for f in $DESTDIR/usr/lib/*; do
|
|
if echo ${f##*/} | grep -Eq '^[^.]*\.(a|so)$'; then
|
|
vmove ${f#$DESTDIR/}
|
|
fi
|
|
done
|
|
}
|
|
}
|