Archive::MoPaQ - perl interface to libmpq
[perl/schtarr.git] / Archive-MoPaQ / Makefile.PL
1 use 5.008008;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5         NAME           => 'Archive::MoPaQ',
6         VERSION_FROM   => 'lib/Archive/MoPaQ.pm', # finds $VERSION
7         PREREQ_PM      => {},
8         ABSTRACT_FROM  => 'lib/Archive/MoPaQ.pm', # retrieve abstract from module
9         AUTHOR         => 'Mischa POSLAWSKY <perl@shiar.org>',
10         LIBS           => ['-lmpq -lz'],
11         INC            => '-I.', # e.g., '-I. -I/usr/local/lib/mpq':
12 );