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