File: Makefile.PL

package info (click to toggle)
libdata-faker-perl 0.10-1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 348 kB
  • ctags: 14
  • sloc: perl: 4,681; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 483 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME                => 'Data::Faker',
    VERSION_FROM        => 'lib/Data/Faker.pm',
    LICENSE             => 'perl',
    PREREQ_PM           => {
		'POSIX'         => 0,
	},
	#EXE_FILES			=> [qw(datafaker)],
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM    => 'lib/Data/Faker.pm', # retrieve abstract from module
       AUTHOR           => 'Jason Kohles <email@jasonkohles.com>') : ()),
);