32 lines
848 B
Plaintext
32 lines
848 B
Plaintext
# Description: Collection of free plugins compatible with LADSPA, LV2 and LinuxVST
|
|
# URL: https://lsp-plug.in
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: cairo lv2 mesa
|
|
# Optional: jack ladspa
|
|
|
|
name=lsp-plugins
|
|
version=1.2.17
|
|
release=1
|
|
source=(https://github.com/sadko4u/lsp-plugins/releases/download/$version/$name-src-$version.7z)
|
|
|
|
build() {
|
|
cd $name-src-$version
|
|
|
|
prt-get isinst jack && PKGMK_LSP+=' jack' || PKGMK_LSP_SUB+=' jack'
|
|
prt-get isinst ladspa && PKGMK_LSP+=' ladspa' || PKGMK_LSP_SUB+=' ladspa'
|
|
PKGMK_LSP_SUB+=' gst'
|
|
|
|
export CFLAGS="$CFLAGS -O2 -flto=auto"
|
|
export CXXFLAGS="$CXXFLAGS -O2 -flto=auto"
|
|
|
|
make config \
|
|
PREFIX=/usr \
|
|
SHARE_PATH=/usr/share \
|
|
ADD_FEATURES="xdg$PKGMK_LSP" \
|
|
SUB_FEATURES="doc$PKGMK_LSP_SUB"
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -fr $PKG/usr/share/doc
|
|
}
|