Skip to content
project-owner edited this page Oct 14, 2018 · 1 revision

Another way to install peppyalsa plugin is to compile plugin source files and use deployment scripts.

First, clone the plugin repository (e.g. from /home/pi folder):

git clone https://github.com/project-owner/peppyalsa.git
cd peppyalsa

Install dependencies:

sudo apt-get install build-essential autoconf automake libtool libasound2-dev libfftw3-dev

Run the following commands to generate the Makefile:

aclocal && libtoolize
autoconf && automake --add-missing

Compile the source files (ignore the warnings if any):

./configure && make

To install the library libpeppyalsa.so in /usr/local/lib and ALSA config file in /etc run command:

sudo make install

<<Previous | Next>>