File: Makefile.PL

package info (click to toggle)
liblinux-kernelsort-perl 0.01-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 164 kB
  • sloc: perl: 225; sh: 114; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 562 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;
use strict;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

my %opts = (
            'NAME'              => 'Linux::KernelSort',
            'VERSION_FROM'      => 'lib/Linux/KernelSort.pm', # finds $VERSION
            'PREREQ_PM'         => {}, # e.g., Module::Name => 1.1
            'ABSTRACT_FROM'     => 'lib/Linux/KernelSort.pm', # retrieve abstract from module
            'AUTHOR'            => 'Leann Ogasawara <ogasawara@osdl.org>',
);

WriteMakefile( %opts );