X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=Makefile.PL;h=5ee546dd83737219f17fd4487bcbc5340e410ec6;hb=96226f1036a7c15539fe93b355361f878ff5c2dd;hp=c2c41f6127774c2bd716c79be0590892e8d0ced8;hpb=e008120187e82d7efb9d9dcdaabd15064300fbf4;p=id3fs.git diff --git a/Makefile.PL b/Makefile.PL index c2c41f6..5ee546d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,17 +2,20 @@ use ExtUtils::MakeMaker; -my @binscripts=qw(id3fs-index); +my @binscripts=qw(id3fs-index id3fs-tag); my @sbinscripts=qw(id3fsd); WriteMakefile(NAME=>"id3fs", VERSION=>"1.0", EXE_FILES=>[ map( "bin/$_", @binscripts) ], MAN1PODS=>{ map({ +"bin/$_" => "\${INST_MAN1DIR}/$_.1" } @binscripts) }, - PREREQ_PM=>{ 'Fuse' => 0, - 'DBI' => 0, - 'DBD::SQLite' => 0} , -# dist=>{ COMPRESS=>"gzip -9f", SUFFIX=>"gz", }, + PREREQ_PM=>{ 'Fuse' => 0, + 'DBI' => 0, + 'DBD::SQLite' => 0, + 'MP3::Tag' => 0, + 'Audio::FLAC::Header' => 0, + 'Ogg::Vorbis::Header' => 0, + } , ($] >= 5.005 ? (ABSTRACT => 'FUSE-based filesystem for browsing music metadata', AUTHOR => 'Ian Beckwith ')