38 lines
853 B
Plaintext
Raw Permalink Normal View History

2021-10-22 16:22:57 -07:00
#! /bin/bash
set -e
MACPORTS_VERSION=2.8.1
2021-10-22 16:22:57 -07:00
MACOS_VERSION=$(sw_vers -productVersion)
case $MACOS_VERSION in
2023-12-06 10:43:55 -08:00
14.*)
MACOS_NAME=14-Sonoma
;;
13.*)
MACOS_NAME=13-Ventura
;;
12.*)
MACOS_NAME=12-Monterey
;;
2021-10-22 16:22:57 -07:00
11.*)
MACOS_NAME=11-BigSur
;;
10.15.*)
MACOS_NAME=10.15-Catalina
;;
10.14.*)
MACOS_NAME=10.14-Mojave
;;
2021-10-22 16:22:57 -07:00
*)
error "Unknown MacOS Version"
esac
INSTALLER_NAME=MacPorts-${MACPORTS_VERSION}-${MACOS_NAME}.pkg
2021-10-22 18:02:21 -07:00
log "Download $INSTALLER_NAME"
curl -o "${PROJECT_DIR}/tmp/${INSTALLER_NAME}" -L "https://github.com/macports/macports-base/releases/download/v${MACPORTS_VERSION}/${INSTALLER_NAME}"
log "Install xcode tools"
xcode-select --install || true
2021-10-22 18:02:21 -07:00
log "Run macports installer"
2023-12-06 10:43:55 -08:00
sudo installer -pkg "${PROJECT_DIR}/tmp/${INSTALLER_NAME}" -target /