Hi, the build instructions for Linux on the following pages do not work properly on my Ubuntu 22.04 ARM64.
- supercollider/README_LINUX.md at develop · supercollider/supercollider · GitHub
- Installing SuperCollider from source on Ubuntu · supercollider/supercollider Wiki · GitHub
I found the way to build without the dependency errors, but I think I do not have write access and am not sure if the following way is generally applicable: If so, could someone check and update the guide?
sudo apt-get update
sudo apt-get upgrade
reboot
cd ~
sudo apt-get install build-essential cmake libjack-jackd2-dev libsndfile1-dev libfftw3-dev libxt-dev libavahi-client-dev
sudo apt-get install git libasound2-dev libicu-dev libreadline6-dev libudev-dev pkg-config libncurses5-dev
sudo apt-get install qtbase5-dev qt5-qmake qttools5-dev qttools5-dev-tools qtdeclarative5-dev libqt5svg5-dev libqt5websockets5-dev qtwebengine5-dev
sudo apt-get install jackd2
sudo apt-get install emacs
git clone --recurse-submodules https://github.com/SuperCollider/SuperCollider.git
cd SuperCollider
mkdir build && cd build
cmake ..
make
sudo make install