File: perl6.pm

package info (click to toggle)
dh-perl6 0.4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 68 kB
  • sloc: perl: 43; makefile: 10
file content (16 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl

use warnings;
use strict;

use Debian::Debhelper::Dh_Lib;

# dh_perl6 creates postinst/postrm scripts
insert_after("dh_install", "dh_perl6_maintscript");
insert_after("dh_install", "dh_perl6_depsfile");

# automatically run the test suite
insert_after("dh_auto_test", "dh_perl6_test");
remove_command("dh_auto_test");

1;