File: _debuild

package info (click to toggle)
zsh 5.9-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 23,856 kB
  • sloc: ansic: 108,138; sh: 6,976; makefile: 722; perl: 687; awk: 291; sed: 16
file content (20 lines) | stat: -rw-r--r-- 1,159 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#compdef debuild

local ign noc

(( $#words > 2 )) && ign='!'
(( CURRENT != 2 )) && noc='!'

_arguments \
  "${ign}(- 1 *)"{-h,--help}'[display usage information]' \
  "${ign}(- 1 *)--version[display version and copyright information]" \
  ${noc}{--no-conf,--noconf}"[don't read devscripts config files]" \
  {-r-,--rootcmd=}'[specify command used to become root if debuild not setuid root]: : _command_names -e' \
  '(--preserve-env)*'{-e-,--preserve-envvar=}'[preserve environment variable]:environment variable:_parameters -g "*export*"' \
  '(-e --preserve-envvar)--preserve-env[preserve all environment vars (except PATH)]' \
  '*'{-e-,--set-envvar=}'[preserve environment variable]:environment variable:_parameters -g "*export*" -qS=' \
  '--prepend-path=[prepend to the sanitised PATH]: :_dir_list' \
  '(-D)-d[skip checking of build dependencies]' \
  '(-d)-D[force checking of build dependencies]' \
  '--check-dirname-level[specify how much to check directory names]:level [1]:((0\:never 1\:only\ if\ program\ changes\ directory 2\:always))' \
  '--check-dirname-regex[specify what constitutes a matching directory name]:perl regex [PACKAGE(-.*)?]'