Skip to content

Instantly share code, notes, and snippets.

@Guilospanck
Created June 18, 2025 18:42
Show Gist options
  • Save Guilospanck/7dbdf39f4c2ce9e5c3670987ba94f893 to your computer and use it in GitHub Desktop.
Save Guilospanck/7dbdf39f4c2ce9e5c3670987ba94f893 to your computer and use it in GitHub Desktop.
Install Aseprite in MacOS and add it to applications
#! /usr/bin/env bash
echo "Cloning repo...this will take some time."
cd /tmp
git clone --recursive https://github.com/aseprite/aseprite.git
cd aseprite/
echo "We will build it now. Just follow the prompts."
./build.sh
echo "Adding to Applications. This will request your password"
mkdir ~/aseprite
cp -r build/* ~/aseprite
cd ~/aseprite
mkdir -p Aseprite.app/Contents
cp -r ./bin ./Aseprite.app/Contents/
mv ./Aseprite.app/Contents/bin ./Aseprite.app/Contents/MacOS
sudo cp -r ./Aseprite.app /Applications
echo "Done! Now you can find it in the Applications"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment