File: Makefile.PL

package info (click to toggle)
libsys-syscall-perl 0.23-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 92 kB
  • ctags: 22
  • sloc: perl: 286; makefile: 7
file content (33 lines) | stat: -rw-r--r-- 921 bytes parent folder | download | duplicates (5)
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
27
28
29
30
31
32
33
#!/usr/bin/perl
#
#   Perl Makefile for Perlbal
#   $Id$
#
#   Invoke with 'perl Makefile.PL'
#
#   See ExtUtils::MakeMaker (3) for more information on how to influence
#    the contents of the Makefile that is written
#

use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                    => 'Sys::Syscall',
    VERSION_FROM            => 'lib/Sys/Syscall.pm',
    AUTHOR                  => 'Brad Fitzpatrick <brad@danga.com>',
    ABSTRACT                => 'Invoke system calls that are otherwise difficult to do from Perl.',

    PREREQ_PM               => {
        'POSIX' => 0,
        'Test::More' => 0,
    },
    dist                    => {
#        CI                      => "cvs commit",
#        RCS_LABEL               => 'cvs tag RELEASE_$(VERSION_SYM)',
        SUFFIX                  => ".gz",
        DIST_DEFAULT            => 'all tardist',
        COMPRESS                => "gzip",
    },
);