Description: Lgpl 2.1+ license class
--- a/lib/Software/License.pm
+++ b/lib/Software/License.pm
@@ -16,6 +16,7 @@
   'GPL-1+' => 'GPL_1_plus',
   'GPL-2'  => 'GPL_2',
   'GPL-2+' => 'GPL_2_plus',
+  'LGPL-2.1+' => 'LGPL_2_1_plus',
   'GPL-3'  => 'GPL_3',
   'GPL-3+' => 'GPL_3_plus',
   'LGPL-2.1' => 'LGPL_2_1',
--- /dev/null
+++ b/lib/Software/License/LGPL_2_1_plus.pm
@@ -0,0 +1,43 @@
+use strict;
+use warnings;
+package Software::License::LGPL_2_1_plus;
+
+use base 'Software::License::LGPL_2_1';
+
+sub name { 'The GNU Lesser General Public License, Version 2.1 or later' }
+
+1;
+
+=pod
+
+=head1 NAME
+
+Software::License::LGPL_2_1_plus - GNU Lesser General Public License, Version 2.1 or later
+
+=head1 VERSION
+
+version 0.103002
+
+=head1 AUTHOR
+
+Dominique Dumont <ddumont@cpan.org>
+
+=head1 COPYRIGHT AND LICENSE
+
+This software is copyright (c) 2011 by Dominique Dumont
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=cut
+
+
+__DATA__
+__DEBIAN-SUMMARY__
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation; either version 2.1 of the License, or (at
+your option) any later version.
+
+On Debian systems, the complete text of version 2.1 of the GNU Lesser
+Public License can be found in `/usr/share/common-licenses/LGPL-2.1'.
