File: cli.pm

package info (click to toggle)
cli-common 0.8.2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 248 kB
  • sloc: perl: 1,086; sh: 53; makefile: 42
file content (18 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl
# debhelper sequence file for cli-common-dev scripts

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

insert_after("dh_fixperms", "dh_clifixperms");

# have to use dh_installdeb as those scripts need to run for
# binary-arch and binary-indep packages
insert_before("dh_installdeb", "dh_clistrip");
insert_before("dh_installdeb", "dh_cligacpolicy");
insert_before("dh_installdeb", "dh_makeclilibs");
insert_before("dh_installdeb", "dh_installcligac");
insert_before("dh_installdeb", "dh_clideps");

1;