NekoX/bin/init/env.sh

34 lines
802 B
Bash
Raw Normal View History

2021-01-16 17:25:30 +01:00
#!/bin/bash
if [ -z "$ANDROID_HOME" ]; then
if [ -d "$HOME/Android/Sdk" ]; then
export ANDROID_HOME="$HOME/Android/Sdk"
fi
fi
2021-03-05 16:09:24 +01:00
_NDK="$ANDROID_HOME/ndk/21.3.6528147"
[ -f "$_NDK/source.properties" ] || _NDK="$ANDROID_NDK_HOME"
[ -f "$_NDK/source.properties" ] || _NDK="$NDK"
[ -f "$_NDK/source.properties" ] || _NDK="$ANDROID_HOME/ndk-bundle"
if [ ! -f "$_NDK/source.properties" ]; then
echo "Error: NDK not found."
exit 1
2021-01-16 17:25:30 +01:00
fi
2021-03-05 16:09:24 +01:00
export ANDROID_NDK_HOME=$_NDK
export NDK=$_NDK
export PROJECT=$(realpath .)
2021-01-16 17:25:30 +01:00
2021-03-05 16:09:24 +01:00
if [ ! $(command -v go) ]; then
if [ -d /usr/lib/go-1.16 ]; then
export PATH=$PATH:/usr/lib/go-1.16/bin
elif [ -d /usr/local/lib/go-1.16 ]; then
export PATH=$PATH:/usr/local/lib/go-1.16/bin
fi
fi
if [ $(command -v go) ]; then
export PATH=$PATH:$(go env GOPATH)/bin
fi