Running ./bootstrap-plugins.sh win64 will not build on Ubuntu 24.04 LTS because of depricated Python 3.11 module 'imp' not in Python 3.12
https://docs.python.org/3.11/library/imp.html
I searched the PawPaw source, but could not find a python import for 'imp' within the PawPaw source.
As a workaround this worked :
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.11
alias python="python3.11"
./bootstrap-plugins.sh win64
Compiled successfully on Ubuntu 24.04 LTS