1require 5.006;
2
3use ExtUtils::MakeMaker;
4
5eval "use Test::Manifest 1.21";
6
7WriteMakefile(
8	'NAME'           => "Crypt::Rijndael",
9    'VERSION_FROM'   => "Rijndael.pm",
10	'LICENSE'        => 'lgpl',
11	'AUTHOR'         => 'Rafael R. Sevilla (maintained by brian d foy <bdfoy@cpan.org>)',
12	'ABSTRACT'       => 'Crypt::CBC compliant Rijndael encryption module',
13
14	'PREREQ_PM'    => {
15			'Test::More'         => '0',
16			'Test::Manifest'     => '1.14',
17			},
18
19
20	'MAN3PODS'     => {
21			'Rijndael.pm' => '$(INST_MAN3DIR)/Crypt::Rijndael.3',
22			},
23
24	clean          => { FILES    => q|*.bak *.old Crypt-*| },
25
26	dist	       => {
27	            PREOP	=> 'pod2text Rijndael.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
28	            COMPRESS	=> 'gzip -9v',
29	            SUFFIX	=> '.gz',
30	           },
31
32    OBJECT       => q[_rijndael$(OBJ_EXT) Rijndael$(OBJ_EXT)],
33	);
34