File: Makefile.PL

package info (click to toggle)
libconvert-ascii-armour-perl 1.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 84 kB
  • sloc: perl: 249; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 689 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/perl -sw
##
## Makefile.PL for Conver::ASCII::Armour
##
## Copyright (c) 2001, Vipul Ved Prakash.  All rights reserved.
## This code is free software; you can redistribute it and/or modify
## it under the same terms as Perl itself.
##
## $Id: Makefile.PL,v 1.2 2001/03/19 23:02:47 vipul Exp $

use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'	       => 'Convert::ASCII::Armour',
    'AUTHOR'       => 'Vipul Ved Prakash <mail@vipul.net>',
    'VERSION_FROM' => 'lib/Convert/ASCII/Armour.pm',
    'PREREQ_PM'    => { 'Digest::MD5'        => 0,
                        'MIME::Base64'       => 0,
                        'Compress::Zlib'     => 0,
                      },
);