Open Source Tomb Raider Engine
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- #!/bin/sh
-
- echo Creating bundle directory structure
- mkdir -p bin/OpenRaider.app/Contents/MacOS
- mkdir -p bin/OpenRaider.app/Contents/Resources/defaults
- mkdir -p bin/OpenRaider.app/Contents/Frameworks
-
- echo Moving bundle data in place
- cp mac_dist/openraider.icns bin/OpenRaider.app/Contents/Resources/openraider.icns
- cp mac_dist/OpenRaider.sh bin/OpenRaider.app/Contents/MacOS/OpenRaider
- cp bin/release/OpenRaider bin/OpenRaider.app/Contents/MacOS/OpenRaider-bin
- cp data/* bin/OpenRaider.app/Contents/Resources/defaults/
|