[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Sheflug] how to release something under the GPL



> So, I know this is a LUG list and not a FSF or GNU list, but I figured
> someone might know the best way to go on this?  Is it simply a matter os
> stating that this <insert name of awesome software here> is released
> under the GPL with a suitable link?  Or do I have to register
> somewhere?  I took a quick look at the gnu.org and fsf.org websites but
> couldn't see anything obvious.

No need to register. You need to include the full copy of the GPL with 
the program(s) though (usually as a file called COPYING I think is what
most use). And in the top of each file, a shorter version of it (if you
find any decent GPL program, you'll see an example).

However at ...
	http://www.gnu.org/licenses/gpl-howto.html
you might find the instructions a little more useful (and complete :-) ).

Chris...

___________________________________________________________________

Sheffield Linux User's Group -
http://www.sheflug.co.uk/mailfaq.html

  GNU the choice of a complete generation.

#!/usr/bin/perl -w
# Strip all line of this form from html messages
# From: "French, Alastair" <Alastair.French [at] racalinst.co.uk>
 
while (<>){
        $_=~s/(^.*:.*[ <])(\w.*)(@.*)/$1nospam$3/;
        print unless /^Delivered-To:/i ;
}