Created
June 18, 2025 18:42
-
-
Save Guilospanck/7dbdf39f4c2ce9e5c3670987ba94f893 to your computer and use it in GitHub Desktop.
Install Aseprite in MacOS and add it to applications
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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