/Makefile.PL

http://github.com/gitpan/PDL-Graphics-AquaTerm · Perl · 18 lines · 11 code · 6 blank · 1 comment · 0 complexity · 6168b66ecbb5bb8710208fcdbee9d132 MD5 · raw file

  1. use PDL::Core::Dev;
  2. use ExtUtils::MakeMaker;
  3. $package = ["aquaterm.pd",AquaTerm,PDL::Graphics::AquaTerm];
  4. # the hash helps dh-make-perl to find needed name and version strings
  5. %hash=(
  6. pdlpp_stdargs($package),
  7. 'NAME' => 'PDL::Graphics::AquaTerm',
  8. 'VERSION_FROM' => 'aquaterm.pd',
  9. 'LIBS' => '-laquaterm',
  10. );
  11. WriteMakefile( %hash );
  12. sub MY::postamble {pdlpp_postamble($package)};