-
-
Save testableapple/3688bbf7c0e475aa915bd34b7cf7876e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -e | |
# Copyright 2024 Namespace Labs Inc. Licensed under the MIT License. | |
# All credit to https://github.com/namespacelabs/xcode-install | |
log() { echo "$@" >&2; } | |
die() { log "$@"; exit 1; } | |
[ $# -eq 1 ] || die "usage: $0 path/to/runtime.dmg" | |
dmg=$1 | |
mountpoint=$(mktemp -d) | |
staging=$(mktemp -d) | |
cleanup() { | |
if [ -d "$staging" ]; then | |
set +e | |
log "Removing $staging..." | |
rm -r "$staging" | |
log "Unmounting $mountpoint..." | |
hdiutil detach "$mountpoint" >&2 | |
fi | |
if [ -d "$mountpoint" ]; then | |
log "Removing $mountpoint..." | |
rmdir "$mountpoint" | |
fi | |
} | |
trap cleanup EXIT | |
log "Mounting $dmg on $mountpoint..." | |
hdiutil attach "$dmg" -mountpoint "$mountpoint" >&2 | |
if ! ls "$mountpoint"/*.pkg >/dev/null 2>&1; then | |
log "Detected a modern volume runtime; installing with simctl..." | |
xcrun simctl runtime add "$1" | |
exit 0 | |
fi | |
log "Detected packaged runtime." | |
bundle=$(echo "$mountpoint"/*.pkg) | |
basename=$(basename "$bundle") | |
sdkname=${basename%.*} | |
log "Found package $bundle (sdk $sdkname)." | |
log "Expanding package $bundle to $staging/expanded..." | |
pkgutil --expand "$bundle" "$staging/expanded" | |
dest=/Library/Developer/CoreSimulator/Profiles/Runtimes/$sdkname.simruntime | |
# The package would try to install itself into volume root; this is wrong. | |
log "Rewriting package install location to $dest..." | |
sed -I '' "s|<pkg-info|<pkg-info install-location=\"$dest\"|" "$staging/expanded/PackageInfo" | |
log "Re-assembling the package $staging/$basename..." | |
pkgutil --flatten "$staging/expanded" "$staging/$basename" | |
log "Installing $staging/$basename..." | |
sudo installer -pkg "$staging/$basename" -target / | |
version=$(plutil -extract CFBundleName raw "$dest/Contents/Info.plist") | |
log "Installed $version." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment