Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
build/bin/sage-print-system-package-command: Handle macports install
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Mar 17, 2021
1 parent 45dec6a commit 8e1393c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build/bin/sage-print-system-package-command
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ case $system:$command in
homebrew*:install)
[ -n "$system_packages" ] && print_shell_command "brew install $system_packages"
;;
macports*:install)
[ "$YES" = yes ] && options="$options -N"
[ -n "$system_packages" ] && print_shell_command "${SUDO}port $options install $system_packages"
;;
slackware*:install)
[ -n "$system_packages" ] && print_shell_command "${SUDO}slackpkg install $system_packages"
;;
Expand Down

0 comments on commit 8e1393c

Please sign in to comment.