File: Makefile.PL

package info (click to toggle)
opalmod 0.1.13
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 220 kB
  • ctags: 16
  • sloc: perl: 220; makefile: 53
file content (20 lines) | stat: -rw-r--r-- 676 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
#!/usr/bin/perl
#    OpaL Perl Modules
#    Copyright (C) 2000  Ola Lundqvist
#    $Id: Makefile.PL,v 1.3 2002/01/23 10:25:17 ola Exp $
#    For full COPYRIGHT notice see the COPYING document.
#
#    For more information take a look at the official homepage at:
#      http://www.opal.dhs.org/programs/opalmod
#    or contact the author at:
#      opal@debian.org
#

use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
	      'NAME'	=> 'OpaL::action',
	      'VERSION_FROM' => 'action.pm', # finds $VERSION
	      'PM'      => { 'action.pm' => '$(INST_LIBDIR)/action.pm' }
);