Once you have successfully compiled and installed Aseprite you may ***not ***distribute it as it violates the Aseprite EULA. Also I’d recommend reading the EULA real quick if you plan on doing anything else with the application as its only 42 lines of text.
Installing aseprite is a fairly straight forward process with the help of the AUR package. Simply type the following commands into your terminal
git clone https://aur.archlinux.org/aseprite.git
cd aseprite
makepkg -si
To create a desktop entry for your respective desktop environment you must simply create a file at ~/.local/share/applications/aseprite.desktop
and write the following contents in it
[Desktop Entry]
Name=Aseprite
Exec=/usr/bin/aseprite # use `which aseprite` to find the file for this
Terminal=false # set the app to not run in a terminal
Icon=/home/user/pathtoiconfile # replace with the path to you icon file
Type=Application
Comment=Useful pixel art editor # tooltip
**I have not personally tested this as I use the i3
window manager instead of a desktop environment please let me know if this does not work
To uninstall aseprite simply type sudo pacman -Rsn aseprite
this should remove all files relating to asperite. Also remove the ~/.local/share/applications/aseprite.desktop
file if you created that.