- Install brew
brew install git git-lfs cmake meson ninja
cd ~git clone https://projects.blender.org/blender/blender.git --depth=1cd blendergit checkout tags/v5.0.1Optionally checkout v5.0.1 for stabilitycd libgit clone https://projects.blender.org/blender/lib-macos_x64.git --depth=1 macos_x64
cd ~curl -LO https://projects.blender.org/blender/lib-source/media/branch/main/rubberband-4.0.0.tar.bz2tar xfv rubberband-4.0.0.tar.bz2cd rubberband-4.0.0mkdir build ; cd buildmeson -Dprefix=~/blender/lib/macos_x64/rubberband ..ninja ; ninja install
cd ~/blendermake
git checkout tags/v5.0.1 didnt work for me with --depth=1 on the git clone for the blender repo. Worked after I removed --depth=1
meson also complained about the command being ambiguous so i added setup as the first argument to #6 on the download and compile list. I also added a -j10 to make to make it make faster as ive got an 8 core (hyperthreaded so really 16 logical cores) intel mac.