Unit-Generator Plugins (UGens) for SuperCollider
See also https://fredrikolofsson.com/code/sc/#plugins
Download these plugins as ready-to-use binaries for macOS, Windows or Linux from here:
https://github.com/redFrik/f0plugins/releases
NOTE: currently the macOS binaries are not signed. I recommend building them yourself (below) or see https://github.com/supercollider/supercollider/wiki/macOS-Signing-and-Notarization
To compile the binaries yourself follow these instructions...
Clone the project:
git clone https://github.com/redFrik/f0plugins --depth 1
cd f0plugins
mkdir build
cd build
Then, use CMake to configure and build it:
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release
cmake --build . --config Release --target install
You may want to manually specify the install location in the first step to point it at your
SuperCollider extensions directory: add the option -DCMAKE_INSTALL_PREFIX=/path/to/extensions
.
It's expected that the SuperCollider repo is cloned at ../supercollider
relative to this repo. If
it's not: add the option -DSC_PATH=/path/to/sc/source
.