File: Makefile.PL

package info (click to toggle)
libmodule-install-autolicense-perl 0.10-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 216 kB
  • sloc: perl: 1,411; sh: 6; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 785 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
22
23
24
25
26
use if ! ( grep { $_ eq '.' } @INC ), qw[lib .];
use strict;
use inc::Module::Install;
use Config;
name 'Module-Install-AutoLicense';
author 'Chris Williams <chris@bingosnet.co.uk>';
version_from 'lib/Module/Install/AutoLicense.pm';
abstract_from 'lib/Module/Install/AutoLicense.pm';
license 'perl';
perl_version '5.006';
build_requires 'Test::More' => 0.47;
build_requires 'File::Temp' => 0;
build_requires 'Capture::Tiny' => 0.05;
requires 'Module::Install' => 0.85;
requires 'Software::License' => 0.010;
clean_files 'dist have_make';
if ( $Config{make} and can_run( $Config{make} ) ) {
  print "I can run '", $Config{make}, "' good\n";
  open HAVEMAKE, '>have_make' or die "$!\n";
  print HAVEMAKE "meep\n";
  close HAVEMAKE;
}
auto_provides;
auto_license;
githubmeta;
WriteAll();