Description: new method
--- a/lib/Software/License.pm
+++ b/lib/Software/License.pm
@@ -68,6 +68,21 @@
 
 sub notice { shift->_fill_in('NOTICE') }
 
+# =method summary
+#
+# This method returns a summary of the license. This summary must
+# refer to a file containing the whole license. On Debian system, the file
+# containing the whole license will be in C</usr/share/common-licenses/>
+# directory.
+#
+# =cut
+
+sub summary {
+    my ($self,$distro) = @_;
+    $distro ||= 'debian' ;
+    $self->_fill_in(uc($distro).'-SUMMARY');
+}
+
 # =method license
 #
 # This method returns the full text of the license.
