#! /bin/bash if [[ -z "$1" || -z "$2" || -z "$3" ]]; then echo "Not enouch input arguments" exit 1 fi PYTHON="$1" ARCH="$2" CONDA="$3" echo "Python Version: $PYTHON" echo "Architecture: $ARCH" echo "Miniconda Architecture: $CONDA" # Use RAM disk if possible if [ -d /dev/shm ]; then TEMP_BASE=/dev/shm else TEMP_BASE=/tmp fi BUILD_DIR=$(mktemp -d "$TEMP_BASE/novelWriter-build-XXXXXX") SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) SRC_DIR="$SCRIPT_DIR/../.." RLS_DIR="$SRC_DIR/dist_macos" cleanup () { if [ -d "$BUILD_DIR" ]; then rm -rf "$BUILD_DIR" fi } trap cleanup EXIT echo "Script Dir: $SCRIPT_DIR" echo "Build Dir: $BUILD_DIR" pushd "$SRC_DIR" || exit 1 VERSION="$(python3 pkgutils.py version)" echo "novelWriter Version: $VERSION" # --- Prepare Files ----------------------------------------------------------------------------- # echo "Generating Info.plist" python3 pkgutils.py gen-plist if [ -f $SRC_DIR/setup/macos/Info.plist ]; then echo "Found: setup/macos/Info.plist" else echo "Missing: setup/macos/Info.plist" exit 1 fi # Check that other assets are present echo "Checking assets" if [ -f $SRC_DIR/novelwriter/assets/sample.zip ]; then echo "Found: novelwriter/assets/sample.zip" else echo "Missing: novelwriter/assets/sample.zip" exit 1 fi if [ -f $SRC_DIR/novelwriter/assets/manual.pdf ]; then echo "Found: novelwriter/assets/manual.pdf" else echo "Missing: novelwriter/assets/manual.pdf" exit 1 fi if [ -f $SRC_DIR/novelwriter/assets/i18n/nw_en_US.qm ]; then echo "Found: novelwriter/assets/i18n/nw_en_US.qm" else echo "Missing: novelwriter/assets/i18n/nw_en_US.qm" exit 1 fi echo "Content of current dir:" ls -lah . # Create icon echo "Creating icon ..." pushd "$SRC_DIR/setup/macos" || exit 1 iconutil -c icns $SRC_DIR/setup/macos/novelwriter.iconset echo "Content of current dir:" ls -lah . popd || exit 1 popd || exit 1 pushd "$BUILD_DIR"/ || exit 1 # --- Create Miniconda Env ---------------------------------------------------------------------- # echo "Downloading Miniconda ..." curl -LO https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-$CONDA.sh bash Miniconda3-latest-MacOSX-$CONDA.sh -b -p ~/miniconda -f rm Miniconda3-latest-MacOSX-$CONDA.sh export PATH="$HOME/miniconda/bin:$PATH" echo "Creating Conda env ..." conda create -n novelWriter -c conda-forge python=$PYTHON --yes source activate novelWriter echo "Installing dictionaries ..." conda install -c conda-forge enchant hunspell-en --yes # Install dependencies echo "Installing Python dependencies ..." pip install -r "$SRC_DIR/requirements.txt" pip install pyenchant==3.3.0rc1 # Leave conda env conda deactivate # --- Build App --------------------------------------------------------------------------------- # echo "Building App bundle ..." # Create .app Framework mkdir -p novelWriter.app/Contents/ mkdir novelWriter.app/Contents/MacOS novelWriter.app/Contents/Resources novelWriter.app/Contents/Resources/novelWriter cp $SRC_DIR/setup/macos/Info.plist novelWriter.app/Contents/Info.plist echo "Copying miniconda env to bundle ..." cp -R ~/miniconda/envs/novelWriter/* novelWriter.app/Contents/Resources/ echo "Copying novelWriter to bundle ..." FILES_COPY=( "CHANGELOG.md" "MANIFEST.in" "CREDITS.md" "LICENSE.md" "CONTRIBUTING.md" "CODE_OF_CONDUCT.md" "novelwriter" "novelWriter.py" ) for file in "${FILES_COPY[@]}"; do echo "Copying $SRC_DIR/$file ..." cp -R $SRC_DIR/$file novelWriter.app/Contents/Resources/novelWriter/ done cp $SRC_DIR/setup/macos/novelwriter.icns novelWriter.app/Contents/Resources/ # Create entry script echo "Creating entry script ..." cat > novelWriter.app/Contents/MacOS/novelWriter << EOF #!/bin/bash DIR="\$( cd "\$( dirname "\${BASH_SOURCE[0]}" )" && pwd )" \$DIR/../Resources/bin/python -sE \$DIR/../Resources/novelWriter/novelWriter.py \$@ EOF # Make it executable chmod a+x novelWriter.app/Contents/MacOS/novelWriter # Do codesigning # echo "Signing bundle ..." # sudo codesign --sign - --deep --force --entitlements "$SCRIPT_DIR/../macos/App.entitlements" --options runtime "novelWriter.app/Contents/MacOS/novelWriter" # --- Cleanup ----------------------------------------------------------------------------------- # echo "Cleaning unused files from bundle ..." pushd novelWriter.app/Contents/Resources || exit 1 find . -type d -iname '__pycache__' -print0 | xargs -0 rm -r rm -rf pkgs rm -rf cmake rm -rf share/{gtk-,}doc # Remove the files from the 3.1 symlink rm -rf lib/python3.1 # Remove web engine rm lib/python3.*/site-packages/PyQt6/QtWebEngine* || true rm -r lib/python3.*/site-packages/PyQt6/Qt/translations/qtwebengine* || true rm lib/python3.*/site-packages/PyQt6/Qt/resources/qtwebengine* || true rm -r lib/python3.*/site-packages/PyQt6/Qt/qml/QtWebEngine* || true rm -r lib/python3.*/site-packages/PyQt6/Qt/plugins/webview/libqtwebview* || true rm lib/python3.*/site-packages/PyQt6/Qt/libexec/QtWebEngineProcess* || true rm lib/python3.*/site-packages/PyQt6/Qt/lib/libQt5WebEngine* || true popd || exit 1 popd || exit 1 mkdir -p $RLS_DIR # --- Create DMG -------------------------------------------------------------------------------- # # Generate .dmg echo "Packageing DMG ..." brew install create-dmg create-dmg --volname "novelWriter $VERSION" --volicon $SRC_DIR/setup/macos/novelwriter.icns \ --window-pos 200 120 --window-size 800 400 --icon-size 100 \ --icon novelWriter.app 200 190 --hide-extension novelWriter.app \ --app-drop-link 600 185 $RLS_DIR/novelWriter-"${VERSION}"-$ARCH.dmg "$BUILD_DIR"/ pushd $RLS_DIR || exit 1 shasum -a 256 novelWriter-"${VERSION}"-$ARCH.dmg | tee novelWriter-"${VERSION}"-$ARCH.dmg.sha256 popd || exit 1