]>
Commit | Line | Data |
---|---|---|
21cd9240 MG |
1 | use 5.014; |
2 | use ExtUtils::MakeMaker; | |
3 | ||
4 | WriteMakefile( | |
0faf07b9 MG |
5 | NAME => 'App::MusicExpo', |
6 | VERSION_FROM => 'lib/App/MusicExpo.pm', | |
7 | PREREQ_PM => { | |
513a3718 MG |
8 | 'Audio::FLAC::Header' => 0, |
9 | 'HTML::Template::Compiled' => 0, | |
10 | 'Memoize' => 0, | |
11 | 'MP3::Tag' => 1.12, | |
12 | 'DB_File' => 0, | |
13 | 'Ogg::Vorbis::Header::PurePerl' => 0, | |
0faf07b9 MG |
14 | }, |
15 | MIN_PERL_VERSION => 5.014, | |
e0878268 | 16 | SIGN => 1, |
0faf07b9 MG |
17 | EXE_FILES => [ 'musicexpo' ], |
18 | LICENSE => 'perl', | |
19 | ABSTRACT_FROM => 'lib/App/MusicExpo.pm', | |
20 | AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>', | |
e0878268 MG |
21 | META_MERGE => { |
22 | resources => { | |
23 | repository => 'http://git.ieval.ro/?p=app-musicexpo.git' | |
24 | }, | |
25 | dynamic_config => 0, | |
26 | } | |
21cd9240 | 27 | ); |