Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo Shields <directhex@apebox.org>2020-04-08 03:00:28 +0300
committerGitHub <noreply@github.com>2020-04-08 03:00:28 +0300
commit952eecabbdd57540f4fe72c490c794e79c3d0cf3 (patch)
tree3678d8c48b3bf4ff7d4f0e11b3c5624376e07f34 /eng/install-native-dependencies.sh
parentd0dc66bc0b17e74a2ad5e9424d1cdfe6f3cb3869 (diff)
Initial addition of tvOS Mono (#34475)
Diffstat (limited to 'eng/install-native-dependencies.sh')
-rw-r--r--eng/install-native-dependencies.sh12
1 files changed, 11 insertions, 1 deletions
diff --git a/eng/install-native-dependencies.sh b/eng/install-native-dependencies.sh
index e837b017c7c..9670ae59031 100644
--- a/eng/install-native-dependencies.sh
+++ b/eng/install-native-dependencies.sh
@@ -23,6 +23,16 @@ elif [ "$1" = "OSX" ]; then
if [ "$?" != "0" ]; then
exit 1;
fi
+elif [ "$1" = "tvOS" ]; then
+ brew update
+ brew upgrade
+ if [ "$?" != "0" ]; then
+ exit 1;
+ fi
+ brew install openssl autoconf automake libtool pkg-config python3
+ if [ "$?" != "0" ]; then
+ exit 1;
+ fi
elif [ "$1" = "iOS" ]; then
brew update
brew upgrade
@@ -34,7 +44,7 @@ elif [ "$1" = "iOS" ]; then
exit 1;
fi
else
- echo "Must pass \"Linux\", \"iOS\" or \"OSX\" as first argument."
+ echo "Must pass \"Linux\", \"tvOS\", \"iOS\" or \"OSX\" as first argument."
exit 1
fi