Enhance build script and make master built tool

- automatically builds the zip file
- cleans up after itself
- puts all files in /outputs
- another zsh file to make all four packages/zips
This commit is contained in:
Erik Gomez
2020-06-14 21:43:35 -05:00
parent cbe94b9abf
commit 306ee5d21b
3 changed files with 31 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/zsh
#
# Build script for all Python 3 frameworks
# Adaptd from https://github.com/munki/munki/blob/Munki3dev/code/tools/build_python_framework.sh
# IMPORTANT
# Run this with your current directory being the path where this script is located
TOOLSDIR=$(dirname $0)
sudo "$TOOLSDIR/build_python_framework_pkgs.zsh" minimal
sudo "$TOOLSDIR/build_python_framework_pkgs.zsh" no_customization
sudo "$TOOLSDIR/build_python_framework_pkgs.zsh" recommended
sudo "$TOOLSDIR/build_python_framework_pkgs.zsh" opionated