contrib/lsp-plugins/Pkgfile

28 lines
765 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 mesa
# Optional: jack ladspa lv2
name=lsp-plugins
version=1.2.2
release=1
source=(https://github.com/sadko4u/lsp-plugins/releases/download/$version/$name-src-$version.tar.gz
lsp-plugins-1.2.2-default_make_flags.patch)
build() {
cd $name
patch -Np1 -i $SRC/lsp-plugins-1.2.2-default_make_flags.patch
prt-get isinst jack && PKGMK_LSP+=' jack'
prt-get isinst ladspa && PKGMK_LSP+=' ladspa'
prt-get isinst lv2 && PKGMK_LSP+=' lv2'
make config PREFIX=/usr SHARE_PATH=/usr/share FEATURES="xdg $PKGMK_LSP"
make
make DESTDIR=$PKG install
rm -fr $PKG/usr/share/doc
}