-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
31 lines (28 loc) · 1.22 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
$VERSION = '0.01';
WriteMakefile(
NAME => 'Audio::DB',
VERSION => $VERSION,
PREREQ_PM => {
DBI => '1.38',
CGI => '3.00',
},
PL_FILES => {
'bin/album_distribution.PLS' => 'bin/album_distribution.pl',
'bin/albums_below_threshold.PLS' => 'bin/albums_below_threshold.pl',
'bin/artists_with_multiple_genres.PLS' => 'bin/artists_with_multiple_genres.pl',
'bin/create_database.PLS' => 'bin/create_database.pl',
'bin/create_schema.PLS' => 'bin/create_schema.pl',
'bin/generate_album_list.PLS' => 'bin/generate_album_list.pl',
'bin/genre_statistics.PLS' => 'bin/genre_statistics.pl',
'bin/library_statistics.PLS' => 'bin/library_statistics.pl',
'bin/song_distribution.PLS' => 'bin/song_distribution.pl',
},
($] >= 5.005
? (ABSTRACT => 'Relational databases and statistics of digital audio collections',
AUTHOR => 'Todd Harris (harris@cshl.edu)')
: ()),
);
1;