1341e2559e
Replace all ad-hoc inline comments between license headers and function declarations with consistent SYNOPSIS / DESCRIPTION / ARGUMENTS / RETURNS / EXAMPLE blocks across all 99 project-owned functions/ files. No executable logic, variable names, or exit codes were modified. Completes Task #6 from AGENTS.md (Retroactive Function Documentation Standardization).
44 lines
1.1 KiB
Fish
44 lines
1.1 KiB
Fish
# Copyright (C) 2026 Rootiest
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# SYNOPSIS
|
|
# _fish_deps_pm_install <pkg>
|
|
#
|
|
# DESCRIPTION
|
|
# Installs a single package via the detected system package manager, running
|
|
# with sudo where required. Supports paru, yay, pacman, apt, brew, pkg, dnf,
|
|
# and yum.
|
|
#
|
|
# ARGUMENTS
|
|
# pkg The package name to install
|
|
#
|
|
# RETURNS
|
|
# 0 Package installed successfully
|
|
# 1 No supported package manager found
|
|
#
|
|
# EXAMPLE
|
|
# _fish_deps_pm_install ripgrep
|
|
function _fish_deps_pm_install --argument-names pkg
|
|
set -l pm (_fish_deps_detect_pm)
|
|
if test -z "$pm"
|
|
echo "No supported package manager found." >&2
|
|
return 1
|
|
end
|
|
switch $pm
|
|
case paru yay
|
|
$pm -S --noconfirm $pkg
|
|
case pacman
|
|
sudo pacman -S --noconfirm $pkg
|
|
case apt
|
|
sudo apt install -y $pkg
|
|
case brew
|
|
brew install $pkg
|
|
case pkg
|
|
sudo pkg install -y $pkg
|
|
case dnf
|
|
sudo dnf install -y $pkg
|
|
case yum
|
|
sudo yum install -y $pkg
|
|
end
|
|
end
|