multiSnow / mcomix3

End of Fork
Other
96 stars 39 forks source link

Flatpak / Snap / AppImage Package #91

Closed DesertStars closed 3 years ago

DesertStars commented 5 years ago

Self-explanatory, as it stands now mcomix3 doesn't really provide an easy way for regular users to install it, unless it's in their package manager.

wyatt8740 commented 4 years ago
mkdir -p ~/bin
python3 ./installer.py --target ~/bin
ln -s ~/bin/mcomix/mcomixstarter.py ~/bin/mcomix3

Add to ~/.bashrc (and maybe ~/.profile), if it doesn't already contain it:

if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:""$PATH"
fi

run with:

mcomix3

Seems to me like Flatpak/Snap/AppImage are all unnecessarily complex overhead.

xinyazhang commented 4 years ago

Since mcomix is a python application requiring no custom C/C++ module, a pip wheel is probably more preferred than flatpak.