I realize there's compile instructions etc but a pre-compiled binary that includes dependencies would make it much easier for non-root users. E.g. like ripgrep does https://github.com/BurntSushi/ripgrep/releases
Just wanted to share that I managed to compile GoAccess as STATIC binary, on lubuntu.
Enjoy :-)
Most helpful comment
Just wanted to share that I managed to compile GoAccess as STATIC binary, on lubuntu.
apt-get install build-essential
apt-get install libncursesw5-dev libgeoip-dev
./configure --enable-geoip=mmdb --enable-utf8 CFLAGS="-static" LIBS="-lncursesw -ltinfo"
make LDFLAGS="-static"
Enjoy :-)