File: nginx.pm

package info (click to toggle)
nginx 1.28.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,508 kB
  • sloc: ansic: 169,572; sh: 623; perl: 439; python: 240; makefile: 130; cpp: 19
file content (14 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;

add_command_options( "dh_auto_test",      "--buildsystem=nginx_mod" );
add_command_options( "dh_auto_configure", "--buildsystem=nginx_mod" );
add_command_options( "dh_auto_build",     "--buildsystem=nginx_mod" );
add_command_options( "dh_auto_install",   "--buildsystem=nginx_mod" );
add_command_options( "dh_auto_clean",     "--buildsystem=nginx_mod" );

insert_after("dh_install", "dh_nginx");

1;