~ocsinventory-dev/ocsinventory-server/stable-2.1

« back to all changes in this revision

Viewing changes to Apache/Makefile.PL

  • Committer: Didier Liroulet
  • Date: 2006-03-19 15:09:38 UTC
  • Revision ID: didier@ocsinventory-ng.org-20060319150938-thmd36q7j9roq0ng
OCS Inventory NG 1.0 RC3 New directory structure


Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-------------------------------------------------------
 
2
#
 
3
# $Id: Makefile.PL,v 1.1 2006-03-19 15:09:38 dliroulet Exp $
 
4
#
 
5
#-------------------------------------------------------
 
6
 
 
7
################################################################################
 
8
#
 
9
# OCS Inventory NG Communication Server Perl Module Setup
 
10
#
 
11
# Copyleft 2006 Pascal DANEK
 
12
# Web: http://ocsinventory.sourceforge.net
 
13
#
 
14
# This code is open source and may be copied and modified as long as the source
 
15
# code is always made freely available.
 
16
# Please refer to the General Public Licence http://www.gnu.org/ or Licence.txt
 
17
################################################################################
 
18
 
 
19
use ExtUtils::MakeMaker;
 
20
 
 
21
WriteMakefile(
 
22
    'NAME'         => 'Apache::Ocsinventory',
 
23
    'VERSION_FROM' => 'Ocsinventory.pm',
 
24
    'PREREQ_PM'    => {
 
25
                        'DBI'             => 1.40,      # no DBI can never be any fun.
 
26
                        'Apache::DBI'     => 0.93,      # no Apache::DBI can never be any fun.
 
27
                        'Compress::Zlib'  => 1.33,      # no Compress:Zlib can never be any fun.
 
28
                        'DBD::mysql'      => 2.9004,# no DBD::mysql can never be any fun.
 
29
                        'XML::Simple'     => 2.12,      # no XML::Simple can never be any fun.
 
30
                        'Net::IP'         => 1.21,      # no Net::IP can never be any fun.
 
31
                      },
 
32
    'EXE_FILES'         => ['binutils/Ocsinventory_local.pl'],
 
33
);
 
34
 
 
35
# EOF