2022-01-16 17:45:42 -05:00
|
|
|
#!/bin/bash
|
|
|
|
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
|
|
|
|
OS="unknown"
|
|
|
|
if [ "$(uname)" == "Linux" ]; then
|
|
|
|
if [ ! "$(grep -Ei 'debian|buntu|mint' /etc/*release)" ]; then
|
|
|
|
echo Not a supported Linux
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
OS="linux"
|
|
|
|
elif [ "$(uname)" == "Darwin" ]; then
|
|
|
|
OS="macos"
|
|
|
|
fi
|
|
|
|
if [ "$OS" == "unknown" ]; then
|
|
|
|
echo "Not a supported operating system for this script"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# ensure flutter is installed
|
|
|
|
if command -v flutter &> /dev/null; then
|
2022-01-16 18:21:46 -05:00
|
|
|
echo '[X] Flutter is available in the path'
|
2022-01-16 17:45:42 -05:00
|
|
|
else
|
2022-01-16 18:21:46 -05:00
|
|
|
echo 'Flutter is not available in the path, install Flutter from here: https://docs.flutter.dev/get-started/install'
|
2022-01-16 17:45:42 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# ensure dart is installed
|
|
|
|
if command -v dart &> /dev/null; then
|
2022-01-16 18:21:46 -05:00
|
|
|
echo '[X] Dart is available in the path'
|
2022-01-16 17:45:42 -05:00
|
|
|
else
|
2022-01-16 18:21:46 -05:00
|
|
|
echo 'Dart is not available in the path, check your environment variables and that Flutter is installed correctly'
|
2022-01-16 17:45:42 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# ensure cargo is installed
|
|
|
|
if command -v cargo &> /dev/null; then
|
2022-01-16 18:21:46 -05:00
|
|
|
echo '[X] Cargo is available in the path'
|
2022-01-16 17:45:42 -05:00
|
|
|
else
|
2022-01-16 18:21:46 -05:00
|
|
|
echo 'Cargo is not available in the path, ensure Rust is installed correctly'
|
2022-01-16 17:45:42 -05:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-03-12 15:27:15 -05:00
|
|
|
# # install cargo cbindgen
|
|
|
|
# cargo install cbindgen
|
2022-01-16 17:45:42 -05:00
|
|
|
|
2022-03-12 15:27:15 -05:00
|
|
|
# # install dart ffigen
|
|
|
|
# dart pub global activate ffigen
|
2022-01-16 17:45:42 -05:00
|
|
|
|
2022-03-12 15:27:15 -05:00
|
|
|
# # install flutter_rust_bridge_codegen
|
|
|
|
# cargo install flutter_rust_bridge_codegen
|
2022-01-17 13:44:38 -05:00
|
|
|
|
2022-01-16 18:21:46 -05:00
|
|
|
# platform specific stuff
|
2022-01-16 17:45:42 -05:00
|
|
|
if [ "$OS" == "linux" ]; then
|
2022-03-12 15:27:15 -05:00
|
|
|
# # ensure packages are installed
|
|
|
|
# echo "Must sudo to root to install LLVM package:"
|
|
|
|
# sudo apt-get install libclang-dev
|
2022-01-16 18:21:46 -05:00
|
|
|
|
|
|
|
# ensure platforms are enabled in flutter
|
|
|
|
flutter config --enable-linux-desktop --enable-android
|
|
|
|
|
2022-01-16 17:45:42 -05:00
|
|
|
elif [ "$OS" == "macos" ]; then
|
2023-11-12 16:47:17 -05:00
|
|
|
# check if cocoapods is installed, if its not, install it
|
|
|
|
if command -v pod &> /dev/null; then
|
|
|
|
echo '[X] CocoaPods is available in the path'
|
|
|
|
else
|
|
|
|
echo 'CocoaPods is not available in the path, installing it now'
|
|
|
|
brew install cocoapods
|
|
|
|
fi
|
2022-01-29 21:25:21 -05:00
|
|
|
|
2023-07-13 18:52:03 -04:00
|
|
|
if [ "$(uname -p)" == "arm" ]; then
|
|
|
|
sudo softwareupdate --install-rosetta --agree-to-license
|
|
|
|
fi
|
|
|
|
|
2022-01-16 18:21:46 -05:00
|
|
|
# ensure platforms are enabled in flutter
|
2022-08-23 11:48:22 -04:00
|
|
|
flutter config --enable-macos-desktop --enable-ios --enable-android
|
2022-01-16 18:21:46 -05:00
|
|
|
fi
|
2022-01-16 17:45:42 -05:00
|
|
|
|
2022-01-16 19:22:23 -05:00
|
|
|
# turn off analytics
|
|
|
|
flutter config --no-analytics
|
|
|
|
dart --disable-analytics
|
|
|
|
|
2022-01-16 18:21:46 -05:00
|
|
|
# run flutter doctor
|
|
|
|
flutter doctor -v
|