The goal is to modify the multicraft / minetest sources to run blockcolor on and to provide a legal and valid source to compile for windows, android, linux. The goal is to modify the multicraft / minetest sources to run blockcolor on and to provide a legal and valid source to compile for windows, android, linux. It may be that the project does not compile correctly or badly, I have not finished. Any help is welcome and I would soon open a forum for this.
31 lines
327 B
Bash
Executable File
31 lines
327 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
echo
|
|
echo "Starting build BlockColor for iOS..."
|
|
|
|
echo
|
|
echo "Build Libraries:"
|
|
|
|
cd deps
|
|
./libraries.sh
|
|
cd ..
|
|
|
|
echo
|
|
echo "Creating Assets:"
|
|
|
|
./assets.sh
|
|
|
|
echo
|
|
echo "Creating App Icon:"
|
|
|
|
echo "Skipping!"
|
|
#./appicon.sh
|
|
|
|
echo
|
|
echo "Install CocoaPods:"
|
|
|
|
pod install
|
|
|
|
echo
|
|
echo "All done! You can continue in Xcode!"
|