You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
342 B
15 lines
342 B
10 years ago
|
use ExtUtils::MakeMaker;
|
||
|
|
||
|
WriteMakefile(
|
||
|
NAME => 'Text::Dokuwiki',
|
||
|
AUTHOR => ["Alex 'AdUser' Z <aduser\@cpan.org>"],
|
||
|
ABSTRACT => 'set of modules to work with dokuwiki format',
|
||
|
VERSION => '0.01',
|
||
|
LICENSE => 'perl_5',
|
||
|
EXE_FILES => ['bin/dw2md'],
|
||
|
PREREQ_PM => {
|
||
|
'Test::More' => 0,
|
||
|
},
|
||
|
);
|
||
|
|