#compdef updpkgsums

declare -a args
args=(
	'(--nocolor -m)'{--nocolor,-m}'[do not colorize output]'
	'(-)'{--help,-h}'[display help message and exit]'
	'(-)'{--version,-V}'[display version information and exit]'

	'::build file:_files'
)

_arguments $args
