software is too hard to compile
@aeonofdiscord That was one reason why in the Freenet project we switched to gradle *with the wrapper*: That’s annoying, but it is easy to build as a newcomer if you already run Freenet (because then you already have Java): git clone https://github.com/freenet/fred && cd fred && ./gradlew jar
I wish gradle did not enable that by sidestepping your whole distribution, but by working with it (i.e. on guix it could create a local environment, if docker is available, use that, …), but it works.
@aeonofdiscord That said: GNU autotools fixes that with ./configure && make && make install
but it lacks dependency-support.