#compdef uu-pathchk

autoload -U is-at-least

_uu-pathchk() {
    typeset -A opt_args
    typeset -a _arguments_options
    local ret=1

    if is-at-least 5.2; then
        _arguments_options=(-s -S -C)
    else
        _arguments_options=(-s -C)
    fi

    local context curcontext="$curcontext" state line
    _arguments "${_arguments_options[@]}" \
'-h[Print help information]' \
'--help[Print help information]' \
'-V[Print version information]' \
'--version[Print version information]' \
'-p[check for most POSIX systems]' \
'-P[check for empty names and leading "-"]' \
'--portability[check for all POSIX systems (equivalent to -p -P)]' \
'*::path:_files' \
&& ret=0
}

(( $+functions[_uu-pathchk_commands] )) ||
_uu-pathchk_commands() {
    local commands; commands=()
    _describe -t commands 'uu-pathchk commands' commands "$@"
}

_uu-pathchk "$@"
