JoeS - 2021-02-13

To get it successful compiled and installed for use with AVR Dragon, I had to do the following:
* Install libusb-dev (libusb1.0-0-dev was already installed but not used)
* Remove the __unused patterns in all sources like mentioned here
* Remove the file avarice.spec. It is mistakenly included in the archive, but should be generated by configure
* Then run:

./configure
make
sudo make install

In case of errors (especially after installing libusb-dev) make clean was not sufficient. I had to remove all generated files manually and start over with ./configure

Jörg