Installez le gestionnaire de packages PKGSRC (FreeBSD)

#
# Copy and paste the lines below to install the Big Sur on Intel set.
#
# These packages are suitable for anyone running Big Sur (11.x) or newer on
# Intel x86 CPUs, and are updated from pkgsrc trunk every few days.
#
BOOTSTRAP_TAR="bootstrap-macos11-trunk-x86_64-20211207.tar.gz"
BOOTSTRAP_SHA="07e323065708223bbac225d556b6aa5921711e0a"

# Download the bootstrap kit to the current directory.
curl -O https://pkgsrc.joyent.com/packages/Darwin/bootstrap/${BOOTSTRAP_TAR}

# Verify the SHA1 checksum.
echo "${BOOTSTRAP_SHA}  ${BOOTSTRAP_TAR}" | shasum -c-

# Verify PGP signature.  This step is optional, and requires gpg.
# curl -O https://pkgsrc.joyent.com/packages/Darwin/bootstrap/${BOOTSTRAP_TAR}.asc
# curl -sS https://pkgsrc.joyent.com/pgp/1F32A9AD.asc | gpg2 --import
# gpg2 --verify ${BOOTSTRAP_TAR}{.asc,}

# Install bootstrap kit to /opt/pkg
sudo tar -zxpf ${BOOTSTRAP_TAR} -C /

# Reload PATH/MANPATH (pkgsrc installs /etc/paths.d/10-pkgsrc for new sessions)
eval $(/usr/libexec/path_helper)
Zaphod Beeblebrox