Skip to content

Commit

Permalink
Packaging fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Dec 8, 2016
1 parent ed63756 commit f99b3aa
Showing 1 changed file with 24 additions and 13 deletions.
37 changes: 24 additions & 13 deletions Build.PL
Expand Up @@ -3,19 +3,30 @@ use AudioFile::Info::Build;

my $module = 'AudioFile::Info::MP3::Tag';

my $b = AudioFile::Info::Build->new(module_name => $module,
license => 'perl',
requires => {
perl => '5.6.0',
AudioFile::Info => 0,
MP3::Tag => 0,
YAML => 0,
},
build_requires => {
Module::Build => 0
},
create_makefile_pl => 'traditional',
);
my $b = AudioFile::Info::Build->new(
module_name => $module,
license => 'perl',
requires => {
perl => '5.6.0',
AudioFile::Info => 0,
MP3::Tag => 0,
YAML => 0,
},
build_requires => {
Module::Build => 0
},
create_makefile_pl => 'traditional',
meta_merge => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/davorg/audiofile-info-mp3-tag.git',
web => 'https://github.com/davorg/audiofile-info-mp3-tag',
},
},
},
);

$b->create_build_script;

Expand Down

0 comments on commit f99b3aa

Please sign in to comment.