Add fixes for High Sierra

This commit is contained in:
2Shirt 2021-04-04 03:18:59 -06:00
parent b3e7b55635
commit 695bf03bcb
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C
3 changed files with 11 additions and 3 deletions

View file

@ -6,11 +6,11 @@
<array> <array>
<dict> <dict>
<key>BundlePath</key> <key>BundlePath</key>
<string>/Applications/iTerm-2.app</string> <string>/Applications/Utilities/Terminal.app</string>
<key>DescriptionKey</key> <key>DescriptionKey</key>
<string>Hardware Diagnostics</string> <string>Hardware Diagnostics</string>
<key>Path</key> <key>Path</key>
<string>/Applications/iTerm-2.app/Contents/MacOS/iTerm2</string> <string>/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal</string>
<key>TitleKey</key> <key>TitleKey</key>
<string>WizardKit: Hardware Diagnostics</string> <string>WizardKit: Hardware Diagnostics</string>
</dict> </dict>

View file

@ -43,7 +43,6 @@ if [[ "${OS_VERSION:0:5}" == "10.11" ]]; then
# TODO: Maybe? # TODO: Maybe?
true true
elif [[ "${OS_VERSION:0:5}" == "10.13" ]]; then elif [[ "${OS_VERSION:0:5}" == "10.13" ]]; then
# TODO: Add colordiff
brew install --build-from-source \ brew install --build-from-source \
automake \ automake \
lua \ lua \
@ -69,7 +68,9 @@ elif [[ "${OS_VERSION:0:5}" == "10.13" ]]; then
watch watch
brew install \ brew install \
cmatrix \ cmatrix \
colordiff \
ddrescue \ ddrescue \
dropbear \
speedtest-cli \ speedtest-cli \
tmux tmux
elif [[ "${OS_VERSION:0:5}" == "10.15" ]]; then elif [[ "${OS_VERSION:0:5}" == "10.15" ]]; then
@ -93,3 +94,8 @@ fi
# Python3 Packages # Python3 Packages
pip3 install docopt mysql-connector NumPy psutil pylint pytz requests pip3 install docopt mysql-connector NumPy psutil pylint pytz requests
git clone https://github.com/yuyichao/gnuplot-py gnuplot-py
cd gnuplot-py
git checkout 2c2218dc67
python3 setup.py install

View file

@ -103,6 +103,8 @@ if [[ "${OS_VERSION:3:2}" == "11" ]]; then
cp -a /usr/bin/fgrep "${WK_PATH}/usr/bin"/ cp -a /usr/bin/fgrep "${WK_PATH}/usr/bin"/
cp -a /usr/bin/locale "${WK_PATH}/usr/bin"/ cp -a /usr/bin/locale "${WK_PATH}/usr/bin"/
rsync -aS /usr/share/locale/ "${WK_PATH}/usr/share/locale"/ rsync -aS /usr/share/locale/ "${WK_PATH}/usr/share/locale"/
elif [[ "${OS_VERSION:3:2}" == "13" ]]; then
cp -a /usr/lib/libexpat* "${WK_PATH}/usr/lib"/
fi fi
# WizardKit # WizardKit