manuskript/package/prepare_osx.sh

22 lines
862 B
Bash
Raw Normal View History

2017-11-03 02:44:49 +13:00
#!/bin/bash
set -ev # display each line executed along with output
2017-11-03 02:44:49 +13:00
brew update
# Upgrade to python 3.x
brew upgrade python
brew install enchant
brew postinstall python # this installs pip
sudo -H pip3 install --upgrade pip setuptools wheel
2018-10-31 05:36:25 +13:00
pip3 install pyinstaller PyQt5 lxml pyenchant pytest pytest-faulthandler
brew install hunspell
# Fooling PyEnchant as described in the wiki.
# https://github.com/olivierkes/manuskript/wiki/Package-manuskript-for-OS-X
2017-11-13 22:47:19 +13:00
sudo touch /usr/local/share/aspell
#
# Note that if qt install is terminated by Travis CI then it is likely
# building from source instead of pouring from a homebrew bottle.
# Fix by choosing lowest osx_image value [1] for xcode that has a
# homebrew qt bottle [2].
# [1] https://docs.travis-ci.com/user/reference/osx#os-x-version
# [2] https://formulae.brew.sh/formula/qt
brew install qt