Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 590 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 590 Bytes

lsfaustlibraries

Luca Spanedda's Faust libraries

Installation

cat > InstallFaust.sh << EOF
#!/bin/bash    
    
# install Faust Grame
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install -y build-essential cmake git libmicrohttpd-dev
sudo apt-get install llvm-dev
git clone https://github.com/LucaSpanedda/faust.git
git clone https://github.com/LucaSpanedda/lsfaustlibraries.git
cd faust
git submodule update --init
sudo make
sudo make install
cd ..
cp lsfaustlibraries/src faust/libraries
cat << EOF >> faust/libraries/stdfaust.lib
cy = library("ls.lib");
EOF
EOF