File: Makefile.PL

package info (click to toggle)
libsvn-simple-perl 0.27-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 60 kB
  • ctags: 31
  • sloc: perl: 296; makefile: 42
file content (27 lines) | stat: -rw-r--r-- 864 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
27
#!/usr/bin/perl
use ExtUtils::MakeMaker;

my $required_svn = '0.31.0';

WriteMakefile(
    AUTHOR              => 'Chia-liang Kao (clkao@clkao.org)',
    ABSTRACT            => 'Simple interface to SVN::Delta::Editor',
    NAME                => 'SVN::Simple::Edit',
    VERSION_FROM        => 'lib/SVN/Simple/Edit.pm',
    DISTNAME            => 'SVN-Simple',
    PREREQ_PM           => {
#        'SVN::Core'   => $required_svn,
    },
    dist                => {
        COMPRESS        => 'gzip -9',
        SUFFIX          => '.gz',
    },
);

$::VERSION = $required_svn;
die << "." unless eval {require SVN::Core; SVN::Core->VERSION >= main->VERSION };
===> Warning: SVN::Core missing or outdated.
Please manually install SVN::Core by compiling Subversion
(version $required_svn or above) with SWIG/Perl bindings,
and try this installation process again.
.