File: javahelper.pm

package info (click to toggle)
javatools 0.48%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 416 kB
  • ctags: 72
  • sloc: sh: 1,515; perl: 930; makefile: 35
file content (21 lines) | stat: -rw-r--r-- 558 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# DH Sequence for javahelper.

## no critic (Modules::RequireExplicitPackage)

use warnings;
use strict;
use autodie;

use Debian::Debhelper::Dh_Lib;

insert_before('dh_compress', 'jh_installlibs');
insert_after('jh_installlibs', 'jh_classpath');
insert_after('jh_classpath', 'jh_manifest');
insert_after('jh_manifest', 'jh_exec');
insert_after('jh_exec', 'jh_depends');
insert_before('dh_installdocs', 'jh_installjavadoc');
insert_before('dh_clean', 'jh_clean');
insert_before('dh_auto_build', 'jh_linkjars');
insert_after('dh_auto_build', 'jh_build');

1;