Skip to content
Extraits de code Groupes Projets
Valider 802fd34d rédigé par Niels Martin Hansen's avatar Niels Martin Hansen
Parcourir les fichiers

Shell script to create OS X application bundles from a build tree, probably...

Shell script to create OS X application bundles from a build tree, probably only works for in-tree builds

Originally committed to SVN as r2486.
parent 0bd7341c
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
#!/bin/bash
test -f aegisub/aegisub && test -x aegisub/aegisub || ( exit "Make sure you're in the right dir"; exit 1 )
test -e $1 && ( echo "$1 already exists, will not overwrite."; exit 1 )
echo "Making directory structure..."
mkdir $1 || ( echo "Failed creating directory $1"; exit 1 )
mkdir $1/Contents mkdir $1/Contents/MacOS
mkdir $1/Contents/Resources
echo "Copying files into package..."
cp aegisub/macosx/Info.plist $1/Contents
cp aegisub/aegisub $1/Contents/MacOS
cp aegisub/macosx/*.icns $1/Contents/Resources
echo "Here we should be finding and fixing up libraries"
echo "Done creating $1!"
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter