Changed license to GPL.
authorHeiko Schlittermann (JUMPER) <hs@schlittermann.de>
Fri, 19 Aug 2011 11:33:13 +0200
changeset 9 b59ac57deb15
parent 8 67a19ad36d8f
child 10 4ab3408f01d2
Changed license to GPL.
Build.PL
bin/blockfuse
--- a/Build.PL	Sun Aug 07 12:25:10 2011 +0200
+++ b/Build.PL	Fri Aug 19 11:33:13 2011 +0200
@@ -6,7 +6,7 @@
     dist_name => "blockfuse",
     dist_author => "Heiko Schlittermann <hs\@schlittermann.de>",
     dist_version_from => "bin/blockfuse",
-    license => "restrictive",
+    license => "GPL",
     script_files => [glob "bin/*"],
     requires => {
 	perl => "5.10.0",
--- a/bin/blockfuse	Sun Aug 07 12:25:10 2011 +0200
+++ b/bin/blockfuse	Fri Aug 19 11:33:13 2011 +0200
@@ -1,12 +1,25 @@
 #! /usr/bin/perl
-# © Heiko Schlittermann <hs@schlittermann.de>
-# source: https://ssl.schlittermann.de/hg/blockfuse (hg repo)
-#
 # RSYNC can't sync block devices to files (something like
 # rsync /dev/sda2 /images/sda2 does not work. There are
 # patches for rsync around, but I didn't like to patch
 # rsync…)
+
+# Copyright (C) 2011 Heiko Schlittermann
 #
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+
 # blockfuse maps the block devices found in /dev/ to regular
 # files in your mountpoint. Currently it fakes the mtime to force
 # rsync comparing the source and destination!
@@ -16,10 +29,6 @@
 
 # Just a short hack, no nice documentation, nothing else.
 
-# LICENSE:
-# If your're insterested in extending this tool, please tell me, I'm
-# willing to put it under some Open Source License. (Currently it's
-# not!)
 
 use 5.010;
 use strict;
@@ -150,10 +159,13 @@
 
 =back
 
-=head1 AUTHOR and SOURCE
+=head1 AUTHOR, COPYRGIHT and SOURCE
 
 Heiko Schlittermann <hs@schlittermann.de>
 
+The program is licensed under the conditions of the GPL, please the
+the source file for details.
+
 Source: L<https://ssl.schlittermann.de/hg/blockfuse>
 
 =cut