File: Makefile.PL

package info (click to toggle)
ocsinventory-server 2.8.1%2Bdfsg1-1%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 8,684 kB
  • sloc: php: 37,167; javascript: 28,347; perl: 8,234; sql: 2,725; sh: 1,636; xml: 1,071; python: 77; makefile: 29
file content (42 lines) | stat: -rw-r--r-- 1,667 bytes parent folder | download | duplicates (2)
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
#-------------------------------------------------------
#
# $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.
	},
#    '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