File: Makefile.PL

package info (click to toggle)
extrepo 0.15
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 136 kB
  • sloc: perl: 348; sh: 31; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl -w

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
	NAME => "Debian::ExtRepo",
	VERSION_FROM => "lib/Debian/ExtRepo.pm",
	PREREQ_PM => {
		'LWP::UserAgent' => 0,
		'YAML' => 0,
		'File::Temp' => 0,
	},
	EXE_FILES => [ 'extrepo' ],
);