blob: c6a0bd958baca0a4ca6bd16537cc4fc06543ca6c (
plain)
1 # Description: Collection of free plugins compatible with LADSPA, LV2 and LinuxVST
2 # URL: https://lsp-plug.in
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: cairo jack ladspa lv2 mesa3d opus php util-linux
5
6 name=lsp-plugins
7 version=1.1.26
8 release=1
9 source=(https://github.com/sadko4u/lsp-plugins/releases/download/lsp-plusings-$version/$name-src-$version.tar.gz)
10
11 build() {
12 cd $name-src-$version
13 sed -e '/LD_PATH/ s|:/usr/local/lib||g' \
14 -i scripts/make/configure.mk
15 make
16 make BIN_PATH=/usr/bin \
17 LIB_PATH=/usr/lib \
18 SHARE_PATH=/usr/share \
19 DOC_PATH=/usr/share/doc \
20 DESTDIR="$PKG/" \
21 install
22 rm -fr $PKG/usr/share/doc
23 }
|