/usr/bin/dh_dzil_build is in dh-dist-zilla 1.3.1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #!/usr/bin/perl
use strict;
use warnings;
use Debian::Debhelper::Dh_Lib;
init();
doit(qw(dzil build --in .build/debian-build), @ARGV);
=head1 NAME
dh_dzil_build - debhelper add-on to run "dzil build"
=head1 OPTIONS
Options before C<--> are used by debhelper. Options after C<--> are passed on to C<dzil build>.
=head1 SEE ALSO
L<debhelper(7)>, L<dh-dist-zilla(7)>
=head1 AUTHOR
Elmar Heeb <elmar@heebs.ch> and Axel Beckert <abe@debian.org>
|