# 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.33
release=1
source=(https://github.com/sadko4u/lsp-plugins/releases/download/$version/$name-src-$version.tar.gz)

build() {
  cd $name

  prt-get isinst jack && PKGMK_LSP+=' jack'
  prt-get isinst ladspa && PKGMK_LSP+=' ladspa'

  sed -i 's!gst/gst.h!gstreamer-1.0/gst/gst.h!' modules/lsp-plugin-fw/include/lsp-plug.in/plug-fw/wrap/gstreamer/defs.h

  export CFLAGS="$CFLAGS -O2 -fno-lto"
  export CXXFLAGS="$CXXFLAGS -O2 -fno-lto"

  make config \
    PREFIX=/usr \
    SHARE_PATH=/usr/share \
    STRICT=1 \
    FEATURES="clap lv2 ui vst2 vst3 xdg $PKGMK_LSP"
  make
  make DESTDIR=$PKG install

  rm -fr $PKG/usr/share/doc
}
