File: Build.PL

package info (click to toggle)
libclamav-client-perl 0.11%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 104 kB
  • sloc: perl: 247; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 669 bytes parent folder | download
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
use Module::Build;

my $build = Module::Build->new(
    module_name     => 'ClamAV::Client',
    dist_author     => 'Julian Mehnle <julian@mehnle.net>',
    license         => 'perl',
    requires        => {
        # Core requirements:
        perl                => 0,
        IO::File            => 0,
        IO::Socket          => 0,
        IO::Socket::UNIX    => 0,
        IO::Socket::INET    => 0,
        Error               => 0
    },
    recommends      => {
    },
    create_makefile_pl
                    => 'passthrough',
    sign            => 1
);

$build->create_build_script();

# $Id: Build.PL,v 1.1 2005/01/11 23:15:30 julian Exp $
# vim:tw=79