veilid/setup_linux.sh

98 lines
2.5 KiB
Bash
Raw Normal View History

2021-11-22 16:28:30 +00:00
#!/bin/bash
2023-01-03 14:13:18 +00:00
set -eo pipefail
2021-11-22 16:28:30 +00:00
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
2022-12-25 16:46:32 +00:00
if [[ "$(uname)" != "Linux" ]]; then
echo Not running Linux
exit 1
fi
if [ "$(lsb_release -d | grep -qEi 'debian|buntu|mint')" ]; then
2021-11-22 16:28:30 +00:00
echo Not a supported Linux
exit 1
fi
# ensure ANDROID_SDK_ROOT is defined and exists
if [ -d "$ANDROID_SDK_ROOT" ]; then
echo '[X] $ANDROID_SDK_ROOT is defined and exists'
else
echo '$ANDROID_SDK_ROOT is not defined or does not exist'
exit 1
fi
2023-01-03 14:13:18 +00:00
# ensure Android Command Line Tools exist
2023-03-05 15:42:31 +00:00
if [ -d "$ANDROID_SDK_ROOT/cmdline-tools/latest/bin" ]; then
2023-01-03 14:13:18 +00:00
echo '[X] Android command line tools are installed'
else
echo 'Android command line tools are not installed'
exit 1
fi
2021-11-22 16:28:30 +00:00
# ensure ANDROID_NDK_HOME is defined and exists
if [ -d "$ANDROID_NDK_HOME" ]; then
echo '[X] $ANDROID_NDK_HOME is defined and exists'
else
echo '$ANDROID_NDK_HOME is not defined or does not exist'
exit 1
fi
# ensure ndk is installed
if [ -f "$ANDROID_NDK_HOME/ndk-build" ]; then
echo '[X] Android NDK is installed at the location $ANDROID_NDK_HOME'
else
echo 'Android NDK is not installed at the location $ANDROID_NDK_HOME'
exit 1
fi
# ensure cmake is installed
if [ -d "$ANDROID_SDK_ROOT/cmake" ]; then
echo '[X] Android SDK CMake is installed'
else
echo 'Android SDK CMake is not installed'
exit 1
fi
# ensure emulator is installed
if [ -d "$ANDROID_SDK_ROOT/emulator" ]; then
echo '[X] Android SDK emulator is installed'
else
echo 'Android SDK emulator is not installed'
exit 1
fi
# ensure adb is installed
if command -v adb &> /dev/null; then
echo '[X] adb is available in the path'
else
echo 'adb is not available in the path'
exit 1
fi
# ensure rustup is installed
if command -v rustup &> /dev/null; then
echo '[X] rustup is available in the path'
else
echo 'rustup is not available in the path'
exit 1
fi
# ensure cargo is installed
if command -v cargo &> /dev/null; then
echo '[X] cargo is available in the path'
else
echo 'cargo is not available in the path'
exit 1
fi
2022-03-17 14:31:10 +00:00
# install targets
rustup target add aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android wasm32-unknown-unknown
2021-11-22 16:28:30 +00:00
2022-03-17 14:31:10 +00:00
# install cargo packages
2022-10-06 15:40:55 +00:00
cargo install wasm-bindgen-cli wasm-pack
2021-11-22 16:28:30 +00:00
2022-11-02 23:37:47 +00:00
# Install capnproto using the same mechanism as our earthly build
$SCRIPTDIR/scripts/earthly/install_capnproto.sh
2022-11-03 00:42:07 +00:00
# Install protoc using the same mechanism as our earthly build
$SCRIPTDIR/scripts/earthly/install_protoc.sh