File: Makefile.PL

package info (click to toggle)
libfile-rsync-perl 0.49-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 196 kB
  • sloc: perl: 1,386; sh: 2; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 890 bytes parent folder | download | duplicates (2)
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
# This -*- perl -*- script writes the Makefile for File-Rsync

use 5.004;
use ExtUtils::MakeMaker;
use Config;

$NAME         = 'File::Rsync';
$DISTNAME     = 'File-Rsync';
$VERSION_FROM = 'Rsync.pm';
$AUTHOR       = 'Lee Eakin <leakin@dfw.nostrum.com>';
$ABSTRACT     = 'Wrapper module for rsync(1) http://rsync.samba.org/';

WriteMakefile(
      VERSION_FROM   => $VERSION_FROM,
      NAME           => $NAME,
      DISTNAME       => $DISTNAME,
      AUTHOR         => $AUTHOR,
      ABSTRACT       => $ABSTRACT,
      PREREQ_PM      => {
                          'Scalar::Util' => 0,
                          'File::Path' => 0,
                          'Test::More' => 0,
                          'IPC::Run3'  => 0,
                        },
      PM             => { 'Rsync.pm'  => '$(INST_LIB)/File/Rsync.pm' },
      dist           => { COMPRESS => 'gzip', SUFFIX => 'gz' },
);