summaryrefslogtreecommitdiff
path: root/cli_nant.pm
blob: c2c2999d1d94e1962a84a08184976c7b3e79ee9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl
# debhelper sequence file for cli-common-dev scripts

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

insert_after("dh_auto_build", "dh_auto_build_nant");
insert_after("dh_auto_clean", "dh_auto_clean_nant");

remove_command("dh_auto_configure");
remove_command("dh_auto_build");
remove_command("dh_auto_test");
remove_command("dh_auto_clean");

1;