Skip to content

Commit

Permalink
Add OpenBSD specific package names (issue #21).
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed May 1, 2024
1 parent 6fb8a96 commit b3d7b1e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ronin-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ function auto_install_rubygems()
case "$package_manager" in
dnf|yum|pacman) install_packages rubygems ;;
pkg) install_packages devel/ruby-gems ;;
pkg_add) install_packages ruby-gems ;;
*)
fail "rubygems was not installed along with ruby. Aborting!"
;;
Expand Down Expand Up @@ -306,6 +307,10 @@ function auto_install_pkg_config()
log "Installing pkg-config ..."
install_packages devel/pkgconf
;;
pkg_add)
log "Installing pkg-config ..."
install_packages pkgconf
;;
esac || fail "Failed to install pkg-config!"
fi
}
Expand Down

0 comments on commit b3d7b1e

Please sign in to comment.