source: projects/zsh-completion/_vbuilder @ 503

Revision 503, 627 bytes checked in by iwaim, 14 years ago (diff)

new project: zsh-completion

Line 
1#compdef vbuilder
2 
3typeset -A opt_args
4 
5_arguments \
6    "--version[set \[version\]]:keyword:(4.2 5.0 VineSeed)" \
7    "--arch[set \[arch\]]:keyword:(i386)" \
8    "--dist-upgrade[make VineSeed bootstrap via 5.0]" \
9    "--target[build rpms with \[target\]]" \
10    "--with-compat32[build rpms with compat32 on bootstrap]" \
11    "--clean[clean bootstrap of \[version\]]" \
12    "--build[build bootstrap of \[version\]]" \
13    "--build-rpm[build \[src.rpm\] on bootstrap]" \
14    "--install-rpm[install \[arch.rpm\|package\] on bootstrap]" \
15    "--remove-rpm[remove \[package\] on bootstarp]" \
16    '1:file:_files' \
17&& return 0
Note: See TracBrowser for help on using the repository browser.