Aegisub/scripts/osx-bundle.sh
Amar Takhar b4175fbd75 * Copy make-app-bundle.sh to osx-fix-libs.py which is the python script.
* Rename make-app-bundle.sh to osx-bundle.sh which is the sh script.

Originally committed to SVN as r2541.
2008-12-29 01:13:55 +00:00

20 lines
657 B
Bash
Executable file

#!/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 $1/Contents/MacOS $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 "Now about to collect and fix up shared libraries..."
python scripts/osx-fix-libs.py "$1/Contents/MacOS/aegisub"
echo "Done creating $1!"