my $value;
my $artist;
my $album;
- my $date;
my @tags;
verbose("Opening tags file $fn\n");
} elsif (/^ALBUM=/) {
$album = $value;
verbose("ALBUM $album from $fn\n");
- } elsif (/^DATE=/) {
- $date = $value;
- verbose("DATE $date from $fn\n");
}
}
close(TAGS) or die("close($fn): $!");
- return ($artist, $album, $date, @tags);
+ return ($artist, $album, @tags);
}
# Process the fa-rip output in the directory DIR.
my $dir = shift;
my $artist;
my $album;
- my $date;
my @tags;
my $status;
rename("$dir/tags", "$dir/using-tags")
or die("rename($dir/tags, $dir/using-tags): $!");
- ($artist, $album, $date, @tags) = get_tags("$dir/using-tags");
+ ($artist, $album, @tags) = get_tags("$dir/using-tags");
verbose("mkdir($artist)\n");
-d $artist or mkdir($artist) or die("mkdir($artist): $!");
=head1 AUTHORS
-Written by Eric Gillespie <epg@pretzelnet.org>. B<fa-tags> contains
-code from B<abcde>, which bears the following notice:
+Written by Eric Gillespie <epg@pretzelnet.org>.
-# Copyright (c) 1998-2001 Robert Woodcock <rcw@debian.org>
-# Copyright (c) 2003-2004 Jesus Climent <jesus.climent@hispalinux.es>
-# This code is hereby licensed for public consumption under either the
-# GNU GPL v2 or greater, or Larry Wall's Artistic license - your choice.
-
-B<flac-archive> is hereby licensed for public consumption under either
-the GNU GPL v2 or greater, or Larry Wall's Artistic license - your
-choice.
+flac-archive is free software; you may redistribute it and/or modify
+it under the same terms as Perl itself.
=cut