~ubuntu-branches/ubuntu/maverick/libnetpacket-perl/maverick

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Cajus Pollmeier
  • Date: 2009-06-24 10:11:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090624101100-mysadcke1taprhap
Tags: upstream-0.04
ImportĀ upstreamĀ versionĀ 0.04

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl
 
2
#
 
3
# Makefile for Net::Protocol bundle
 
4
#
 
5
# $Id: Makefile.PL,v 1.4 2001/07/29 23:23:42 tpot Exp $
 
6
#
 
7
 
 
8
use ExtUtils::MakeMaker;
 
9
 
 
10
WriteMakefile(
 
11
    NAME => 'NetPacket',
 
12
    DISTNAME => 'NetPacket',
 
13
    VERSION => 0.04,
 
14
    dist => {
 
15
        'COMPRESS' => 'gzip -9f',
 
16
        'SUFFIX' => 'gz'
 
17
        }
 
18
);
 
19