contrib/lsp-plugins/Pkgfile

25 lines
666 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-09-10 19:22:30 +02:00
# Depends on: cairo libsndfile mesa
2022-06-25 16:22:45 +02:00
# Optional: jack ladspa lv2
name=lsp-plugins
2022-09-10 19:22:30 +02:00
version=1.2.3
release=1
2022-09-10 19:22:30 +02:00
source=(https://github.com/sadko4u/lsp-plugins/releases/download/$version/$name-src-$version.tar.gz)
build() {
2022-03-27 13:47:59 +02:00
cd $name
2022-06-25 16:22:45 +02:00
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
}