HOW-TO: Installing HOLAP audio plugins in 64 Studio 2.1
Josep Andreu has written a nice set of new DSSI and LADSPA audio plugins; including exciter, harmonizer, wah, delay, chorus, eq's, phaser, and (a superb) reverb. Many thanks to him.
”Most of this LADSPA plugins are based on the wonderful ZynAddsubFx synthesizer (Paul Nasca) set of effects. I allways want to thanks Paul Nasca for his work because I've been through the entry into the world of audio programming.” (Josep Andreu)
Below is my how-to for installing those plugins in 64 Studio 2.1, because I found the installation procedure quite complicated. If you have any corrections or improvements, please tell.
There's more info on HOLAP's page:
http://holap.berlios.de/index.html
and LAU mailing list archive:
http://lalists.stanford.edu/lau/2008/12/0407.html
* * *
INSTALLING HOLAP AUDIO PLUGINS IN 64 STUDIO 2.1
* as root:
apt-get install autoconf automake dssi-dev libfltk1.1-dev liblo0-dev cvs
cvs -d:pserver:anonymous@cvs.holap.berlios.de:/cvsroot/holap login
* (no password needed, just press enter)
cvs -z3 -d:pserver:anonymous@cvs.holap.berlios.de:/cvsroot/holap co holap
* you will need libtool 2.2.6a-1, which is available in Debian experimental
* repostories. It did not have any dependencies when I installed it, only
* one package was needed.
* libtool 2.2.6a-1 for 64-bit:
wget
http://ftp.de.debian.org/debian/pool/main/libt/libtool/libtool_2.2.6a-1_amd64.deb
dpkg -i libtool_2.2.6a-1_amd64.deb
* libtool 2.2.6a-1 for 32-bit:
wget
http://ftp.de.debian.org/debian/pool/main/libt/libtool/libtool_2.2.6a-1_i386.deb
dpkg -i libtool_2.2.6a-1_i386.deb
* Each plugin has to be installed separately. However, if you copy and
* paste all lines below to terminal, you may be lucky to install them all at
* once. Of course, you can play more safe by copying it line by line...
cd holap
cd exciter
./autogen.sh
./configure
make
make install
make clean
cd ..
cd harmonizer
./autogen.sh
./configure
make
make install
make clean
cd ..
cd harmonizer_l
./autogen.sh
./configure
make
make install
make clean
cd ..
cd musicaldelay
./autogen.sh
./configure
make
make install
make clean
cd ..
cd zynalienwah
./autogen.sh
./configure
make
make install
make clean
cd ..
cd zynchorus
./autogen.sh
./configure
make
make install
make clean
cd ..
cd zyneq3par
./autogen.sh
./configure
make
make install
make clean
cd ..
cd zyneq10band
./autogen.sh
./configure
make
make install
make clean
cd ..
cd zynphaser
./autogen.sh
./configure
make
make install
make clean
cd ..
cd zynreverb
./autogen.sh
./configure
make
make install
make clean
cd ..
cd ..
