Description: Lgpl 3+ license class
--- /dev/null
+++ b/lib/Software/License/LGPL_3_0_plus.pm
@@ -0,0 +1,43 @@
+use strict;
+use warnings;
+package Software::License::LGPL_3_0_plus;
+
+use base 'Software::License::LGPL_3_0';
+
+sub name { 'The GNU Lesser General Public License, Version 3 or later' }
+
+1;
+
+=pod
+
+=head1 NAME
+
+Software::License::LGPL_3_0_plus - GNU Lesser General Public License, Version 3 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 3 of the License, or (at
+your option) any later version.
+
+On Debian systems, the complete text of version 3 of the GNU Lesser
+Public License can be found in `/usr/share/common-licenses/LGPL-3'.
--- a/lib/Software/License.pm
+++ b/lib/Software/License.pm
@@ -22,6 +22,8 @@
   'LGPL-2.1' => 'LGPL_2_1',
   'LGPL-3'   => 'LGPL_3_0',
   'LGPL-3.0' => 'LGPL_3_0',
+  'LGPL-3+'   => 'LGPL_3_0_plus',
+  'LGPL-3.0+' => 'LGPL_3_0_plus',
   'Artistic'   => 'Artistic_1_0',
   'Artistic-1' => 'Artistic_1_0',
   'Artistic-2' => 'Artistic_2_0',
