1use ExtUtils::MakeMaker;
2use 5.008;
3
4WriteMakefile(
5    NAME         => 'Crypt::AppleTwoFish',
6    VERSION_FROM => 'lib/Crypt/AppleTwoFish.pm', # finds $VERSION
7    AUTHOR       => 'William Hererra (whererra@skylightview.com)',
8    ABSTRACT     => 'An Apple iTMS internal key descrambling algorithm',
9    PREREQ_PM    => { Carp => 0, Digest::SHA => 0, Math::BigInt => 0 },
10    LICENSE      => 'Other',
11);
12