home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / linux / network / lbnamed / Stanford-DNSserver.tar.gz / Stanford-DNSserver-1.2.0.tar / Stanford-DNSserver-1.2.0 / Makefile.PL < prev    next >
Makefile  |  2003-09-22  |  848b  |  28 lines

  1. use ExtUtils::MakeMaker;
  2.  
  3. # Set version here, so we can change it when either DNS.pm
  4. # or DNSserver.pm change.
  5.  
  6. $VERSION  = "1.2.0";
  7.  
  8. # See lib/ExtUtils/MakeMaker.pm for details of how to influence
  9. # the contents of the Makefile that is written.
  10.  
  11. WriteMakefile(
  12.     'NAME'           => 'Stanford::DNSserver',
  13.     'VERSION'        => $VERSION,
  14.     'dist'           => {
  15.                           COMPRESS     => 'gzip ',
  16.                           SUFFIX       => '.gz',
  17.                           DIST_DEFAULT => 'all tardist'
  18.                         },
  19.     'PREREQ_PM'      => {}, # e.g., Module::Name => 1.1
  20.     'PM'             => {
  21.                           'DNS.pm'       => '$(INST_LIBDIR)/DNS.pm',
  22.                           'DNSserver.pm' => '$(INST_LIBDIR)/DNSserver.pm'
  23.                         },
  24. #   'ABSTRACT_FROM'  => 'DNSserver.pm'
  25. );
  26.  
  27.  
  28.