Quote:
Originally Posted by superpomme
or point me in the right direction for how I go about doing it?
|
All of the things that you need are very very non-trivial, I strongly doubt that anyone is going to compile this for you as getting everything to work will be a huge time sink.
At a bare minimum, you'd need to cross compile all of the dependencies needed to build webp as mentioned by the page that you linked:
Code:
libjpeg-dev libpng-dev libtiff-dev libgif-dev
These probably have their own dependencies which again, you'd need to cross compile.
Once you're at that point, you might be able to cross compile webp. Looks like it uses Autotools(?) so you'd want to pass host + target options to ./configure to let it know that you want to build it for ARM.
TL;DR this is likely to be a huge pain and you'll probably have a less frustrating time if you figure out how to get that site to give you JPEG instead of WEBP or set up some kind of proxy to do this for you on a free AWS EC2 instance.