#compdef -p pkg-(helper|gencontrol)
## **************************************************************************
## For copyright and licensing terms, see the file named COPYING.
## **************************************************************************
#
# Z Shell command-line completion

function _pkg-helper()
{
	local lstate state
	local -a common
	common=(-s '--help[Display option help]' '--usage[Display option usage]')

	case "${service}" in
		(*)
			_arguments -A '-*' $common -- ;;
	esac
}

_pkg-helper "$@"
