File: nodejs.pm

package info (click to toggle)
pkg-js-tools 0.17.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,036 kB
  • sloc: perl: 5,004; sh: 840; makefile: 36; javascript: 22
file content (15 lines) | stat: -rw-r--r-- 502 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl
# debhelper sequence file

use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;

add_command_options( "dh_auto_test",      "--buildsystem=nodejs" );
add_command_options( "dh_auto_configure", "--buildsystem=nodejs" );
add_command_options( "dh_auto_build",     "--buildsystem=nodejs" );
add_command_options( "dh_auto_install",   "--buildsystem=nodejs" );
add_command_options( "dh_auto_clean",     "--buildsystem=nodejs" );
insert_before( 'dh_gencontrol', 'dh_nodejs_substvars' );

1;