Wolf Shaper is a waveshaper plugin with a graph editor. It can be built as an LV2, VST or CLAP plugin and as a standalone Jack application.
To find out more about this plugin, check out this video series by unfa!
You can find some precompiled plugin binaries in the Releases tab. Some packages are also available for various operating systems:
Download the plugin from the pdesaulniers/wolf PPA:
sudo apt-add-repository -y ppa:pdesaulniers/wolf
sudo apt-get update
sudo apt-get install wolf-shaper
For installing the latest release:
sudo pacman -S wolf-shaper
A git package is also available in the AUR.
Install the plugin from the KXStudio repositories.
Wolf Shaper is available in the FreeBSD Ports collection.
First, clone the repo (note the --recursive
argument):
git clone --recursive https://github.com/wolf-plugins/wolf-shaper.git
cd wolf-shaper
Then, run the following command:
BUILD_VST2=true BUILD_VST3=true BUILD_CLAP=true BUILD_LV2=true BUILD_DSSI=true BUILD_JACK=true make
You may also prepend WIN32=true
or MACOS=true
to the command, if applicable.
All plugin builds will be placed in the bin folder. Copy them to an appropriate place so that your plugin host can find them, and you're done :)
This project uses git submodules. Thus, to update your local copy of the repo, you need to run the following commands:
git pull
git submodule update --init --recursive
You may then build the plugin with the most recent changes.