File: Makefile.PL

package info (click to toggle)
libfile-rsync-perl 0.42-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 116 kB
  • ctags: 18
  • sloc: perl: 497; makefile: 50
file content (26 lines) | stat: -rw-r--r-- 875 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
20
21
22
23
24
25
26
# 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 },
      PL_FILES       => { 'makepm.PL' => 'config.pm' },
      PM             => { 'Rsync.pm'  => '$(INST_LIB)/File/Rsync.pm',
     			  'config.pm' => '$(INST_ARCHLIB)/File/Rsync/Config.pm' },
      dist           => { COMPRESS => 'gzip', SUFFIX => 'gz' },
      realclean      => { FILES => 'config.pm' },
);