contrib/lsp-plugins/Pkgfile

28 lines
765 B
Plaintext
Raw Normal View History

# Description: Collection of free plugins compatible with LADSPA, LV2 and LinuxVST
# URL: https://lsp-plug.in
# Maintainer: Tim Biermann, tbier at posteo dot de
2022-06-25 16:22:45 +02:00
# Depends on: cairo mesa
# Optional: jack ladspa lv2
name=lsp-plugins
2022-06-25 16:22:45 +02:00
version=1.2.2
release=1
2022-06-25 16:22:45 +02:00
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() {
2022-03-27 13:47:59 +02:00
cd $name
2022-06-25 16:22:45 +02:00
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
2022-03-27 13:47:59 +02:00
make DESTDIR=$PKG install
2022-06-25 16:22:45 +02:00
rm -fr $PKG/usr/share/doc
}