Makefile.PL 423 B

12345678910111213141516171819202122
  1. use ExtUtils::MakeMaker;
  2. use Config;
  3. use File::Spec;
  4. use 5.006;
  5. use Carp;
  6. WriteMakefile(
  7. 'NAME' => "B::Stash",
  8. 'VERSION_FROM' => "Stash.pm",
  9. 'AUTHOR' => 'Reini Urban <perl-compiler@googlegroups.com>',
  10. 'ABSTRACT' => 'Perl compiler',
  11. 'LICENSE' => 'perl',
  12. 'SIGN' => 1,
  13. );
  14. # Local Variables:
  15. # mode: cperl
  16. # cperl-indent-level: 4
  17. # fill-column: 100
  18. # End:
  19. # vim: expandtab shiftwidth=4: