File: Makefile.PL

package info (click to toggle)
ocsinventory-server 2.5%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,088 kB
  • sloc: php: 27,462; perl: 8,241; sh: 1,680; sql: 1,355; xml: 1,041; makefile: 34
file content (44 lines) | stat: -rw-r--r-- 1,890 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#-------------------------------------------------------
#
# $Id: Makefile.PL,v 1.6 2008-02-27 21:26:27 dliroulet Exp $
#
#-------------------------------------------------------

################################################################################
#
# OCS Inventory NG Communication Server Perl Module Setup
#
# Copyleft 2006 Pascal DANEK
# Web: http://www.ocsinventory-ng.org
#
# This code is open source and may be copied and modified as long as the source
# code is always made freely available.
# Please refer to the General Public Licence http://www.gnu.org/ or Licence.txt
################################################################################

use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

WriteMakefile(
    'NAME'         => 'Apache::Ocsinventory',
    'VERSION_FROM' => 'Ocsinventory.pm',
    'PREREQ_PM'    => {
			'DBI'             => 1.40,   # no DBI can never be any fun.
			'Apache::DBI'     => 0.93,   # no Apache::DBI can never be any fun.
			'Compress::Zlib'  => 1.33,   # no Compress:Zlib can never be any fun.
			'DBD::mysql'      => 2.9004, # no DBD::mysql can never be any fun.
			'XML::Simple'     => 2.12,   # no XML::Simple can never be any fun.
			'Net::IP'         => 1.21,   # no Net::IP can never be any fun.
#			'SOAP::Lite'      => 0.66,   # no SOAP::Lite can never be any fun (required only for SOAP web service).
#			'XML::Entities'   => 0.02,   # no SOAP::Lite can never be any fun (required only for SOAP web service).
		      },
#    'EXE_FILES'         => ['binutils/ocsinventory-injector.pl'],
#    'INSTALLSCRIPT'     => "/usr/bin",
#    'INSTALLSITESCRIPT' => "/usr/bin",
    ($] >= 5.005 ?      ## Add these new keywords supported since 5.005
      (AUTHOR           => 'Pascal DANEK <hunal@users.sourceforge.net>') : ()),
);

# EOF