File: ocaml.pm

package info (click to toggle)
dh-ocaml 2.5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 352 kB
  • sloc: xml: 1,746; perl: 1,063; sh: 244; makefile: 105
file content (11 lines) | stat: -rw-r--r-- 290 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl
use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;

insert_before( "dh_gencontrol",     "dh_ocaml" );
insert_before( "dh_auto_configure", "dh_ocamlinit" );
insert_before( "dh_clean",          "dh_ocamlclean" );
insert_before( "dh_installdocs",    "dh_ocamldoc" );

1;