Files
RedBear-OS/recipes/shells/zsh/source/Completion/Debian/Command/_dpkg-cross
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

23 lines
1.1 KiB
Plaintext

#compdef dpkg-cross
local _dpkgcross_arches
_dpkgcross_arches=(/etc/dpkg-cross/cross-config.*(N))
_dpkgcross_arches=(${${_dpkgcross_arches#*.}:-alpha amd64 common cygwin-i386 gnu hppa i386 linux m32r m68k mips powerpc sh sh3 sh3eb sh4 sh4eb w32})
_arguments \
'(-h --help)'{-h,--help}'[show summary of options]' \
'(-v --verbose)'{-v,--verbose}'[be more verbose]' \
'(-q --quiet)'{-q,--quiet}'[be more quiet]' \
'(-a --arch)'{-a,--arch}':architecture:('"$_dpkgcross_arches"')' \
'(-i --install)'{-i,--install}'[install packages]' \
'(-A --convert-anyway)'{-A,--convert-anyway}'[convert package even if not useful]' \
'(-b --build)'{-b,--build}'[just build but do not install]' \
'(-r --remove)'{-r,--remove}'[remove packages]' \
'(-s --status)'{-s,--status}'[print status of named packages]' \
'(-l --list)'{-l,--list}'[print short status of named packages or patterns]' \
'(-L --list-files)'{-L,--list-files}'[list files belonging to named packages]' \
'(-u --update)'{-u,--update}'[update current cross-inst]' \
'(-Q --query)'{-Q,--query}'[print available update packages]' \
'*:package or path or pattern:_files'