summaryrefslogtreecommitdiff
path: root/elpa.pm
blob: cd0dfd298fcae04c3c8a6577881c23c859b8510b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl
# debhelper sequence file for dh_elpa script

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

insert_after("dh_install", "dh_elpa");

unless ( defined $ENV{ 'DH_ELPA_TEST_DISABLE' } ) {
    insert_after("dh_auto_test", "dh_elpa_test");
    remove_command("dh_auto_test");
}

1;