Ho scritto uno script bash che vorrei mettere sotto GPL v3. Ho letto la documentazione GNU su Come applicare questi termini ai nuovi programmi e Come utilizzare le licenze GNU per il proprio software . Tuttavia, non sono abbastanza sicuro su cosa mettere lì e quali artefatti sono necessari.
Finora, ho fatto quanto segue:
- Inserisci un file chiamato
COPYING
(che contiene la licenza) nella cartella del progetto - All'inizio del mio script, ho allegato quanto segue al mio script:
up is a bash function to simplify vertical file system navigation.
Copyright (C) 2012 Oliver Weiler
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/.
È tutto ciò che devo fare? Il mettere la licenza in un file separato è effettivamente necessario, se l'avviso nel file di script si collega ad esso?