#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[@]}" \
'-p[check for most POSIX systems]' \
'-P[check for empty names and leading "-"]' \
'--portability[check for all POSIX systems (equivalent to -p -P)]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
'::path:_files' \
&& ret=0
}

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

if [ "$funcstack[1]" = "_uu-pathchk" ]; then
    _uu-pathchk "$@"
else
    compdef _uu-pathchk uu-pathchk
fi
