mkdir sources
cd sources
cd linuxdeploy/libs
git clone https://github.com/linuxdeploy/linuxdeploy-plugin-appimage.git
cd ..
git submodule update --init --recursive
chmod 755 src/core/generate-excludelist.sh
set(USE_SYSTEM_CIMG ON CACHE BOOL "Set to OFF to use CImg library bundled in lib directory")
with line:
set(USE_SYSTEM_CIMG OFF CACHE BOOL "Set to OFF to use CImg library bundled in lib directory")
mkdir build
cd build
cmake ..
make
cc1: all warnings being treated as errors
what takes place in Ubuntu 21.10 and newer, then issue in current directory (build) command as below:
grep -r "Werror" *
and next in all files found replace string:
-Werror -Wno-error=dangling-else
with:
-Wno-error
and after that changes compile application again.
bin
linuxdeploy sources are here:
git clone https://github.com/linuxdeploy/linuxdeploy.git
linuxdeploy appimage plugin sources are here:
git clone https://github.com/linuxdeploy/linuxdeploy-plugin-appimage.git
cd linuxdeploy-plugin-appimage/lib
rm -rf args
git clone https://github.com/Taywee/args.git
AppImageKit is here:
git clone https://github.com/AppImage/AppImageKit.git
cc1: all warnings being treated as errors
what takes place in Ubuntu 21.10 and newer, then issue in current directory (build) command as below:
grep -r "Werror" *
and next in all files found replace string:
-Werror -Wno-error=dangling-else
with:
-Wno-error
and after that changes compile application again.