File: Makefile.PL

package info (click to toggle)
pkg-js-tools 0.17.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,036 kB
  • sloc: perl: 5,006; sh: 840; makefile: 36; javascript: 22
file content (19 lines) | stat: -rw-r--r-- 702 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use 5.028001;
use ExtUtils::MakeMaker;

my @exe = map {chomp; $_} split /\s+/g, `ls tools/*`;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME => 'Debian::PkgJs',
    VERSION   => '0.8.14',    # finds $VERSION, requires EU::MM from perl >= 5.5
    PREREQ_PM => {},          # e.g., Module::Name => 1.1
    ABSTRACT_FROM => 'lib/Debian/PkgJs/Npm.pm',  # retrieve abstract from module
    AUTHOR        => 'xavier <yadd@debian.org>',
    EXE_FILES     => \@exe,

    #LICENSE           => 'perl',
    #Value must be from legacy list of licenses here
    #http://search.cpan.org/perldoc?Module%3A%3ABuild%3A%3AAPI
);