forked from mia/Aegisub
b4175fbd75
* Rename make-app-bundle.sh to osx-bundle.sh which is the sh script. Originally committed to SVN as r2541.
19 lines
657 B
Bash
Executable file
19 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!"
|