File: Makefile.PL

package info (click to toggle)
gearman-server 1.09-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 100 kB
  • ctags: 76
  • sloc: perl: 775; sh: 82; makefile: 50
file content (14 lines) | stat: -rw-r--r-- 608 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
              NAME         => 'Gearman::Server',
              VERSION_FROM => 'lib/Gearman/Server.pm',
              ABSTRACT_FROM => 'lib/Gearman/Server.pm',
              EXE_FILES    => ['gearmand'],
              PREREQ_PM    => {
                  'Gearman::Util' => 0,
                  'Danga::Socket' => 1.52,
              },
              AUTHOR       => 'Brad Fitzpatrick (brad@danga.com), Brad Whitaker (whitaker@danga.com)',
              );