forked from ports/contrib
25 lines
666 B
Plaintext
25 lines
666 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 libsndfile mesa
|
|
# Optional: jack ladspa lv2
|
|
|
|
name=lsp-plugins
|
|
version=1.2.3
|
|
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'
|
|
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
|
|
}
|