blob: 8b760a57846b9e881ffd89e321bbecdf776a9add (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
#!/bin/bash
set -e
addons_download() {
local build_dir="$1"
if [[ -d "${build_dir}/third/data/plugins" ]]; then
echo "Warning: found previous addons installation, skipping."
echo " addons path: ${build_dir}/third/data/plugins"
return 0
fi
mkdir -p "${build_dir}/third/data/plugins"
# Downlaod thirdparty plugins
curl --insecure \
-L "https://github.com/pragtical/plugins/archive/master.zip" \
-o "${build_dir}/plugins.zip"
unzip "${build_dir}/plugins.zip" -d "${build_dir}"
mv "${build_dir}/plugins-master/plugins" "${build_dir}/third/data"
rm -rf "${build_dir}/plugins-master"
}
# Addons installation: some distributions forbid external downloads
# so make it as optional module.
addons_install() {
local build_dir="$1"
local data_dir="$2"
# Plugins
mkdir -p "${data_dir}/plugins"
for plugin_name in open_ext; do
cp -r "${build_dir}/third/data/plugins/${plugin_name}.lua" \
"${data_dir}/plugins/"
done
}
get_platform_name() {
if [[ "$OSTYPE" == "msys" ]]; then
echo "windows"
elif [[ "$OSTYPE" == "darwin"* ]]; then
echo "macos"
elif [[ "$OSTYPE" == "linux"* || "$OSTYPE" == "freebsd"* ]]; then
echo "linux"
else
echo "UNSUPPORTED-OS"
fi
}
get_platform_arch() {
platform=$(get_platform_name)
arch=${CROSS_ARCH:-$(uname -m)}
if [[ $MSYSTEM != "" ]]; then
case "$MSYSTEM" in
MINGW64|UCRT64|CLANG64)
arch=x86_64
;;
MINGW32|CLANG32)
arch=i686
;;
CLANGARM64)
arch=aarch64
;;
esac
fi
echo "$arch"
}
get_default_build_dir() {
platform="${1:-$(get_platform_name)}"
arch="${2:-$(get_platform_arch)}"
echo "build-$platform-$arch"
}
if [[ $(get_platform_name) == "UNSUPPORTED-OS" ]]; then
echo "Error: unknown OS type: \"$OSTYPE\""
exit 1
fi
|