mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-21 16:37:20 +01:00
11 lines
389 B
Bash
Executable File
11 lines
389 B
Bash
Executable File
#templates
|
|
|
|
cd ../../bin
|
|
|
|
cp -r ../misc/dist/osx_template.app .
|
|
mkdir -p osx_template.app/Contents/MacOS
|
|
cp pandemonium.osx.opt.universal osx_template.app/Contents/MacOS/pandemonium_osx_release.64
|
|
cp pandemonium.osx.opt.debug.universal osx_template.app/Contents/MacOS/pandemonium_osx_debug.64
|
|
chmod +x osx_template.app/Contents/MacOS/pandemonium_osx*
|
|
zip -q -9 -r osx.zip osx_template.app
|