Come faccio ad includere correttamente le dichiarazioni di copyright per le biblioteche incluse?
Ho un programma che usa librerie che sono sotto licenza GPL e MIT (o congiuntamente sotto entrambe le licenze, solo solo MIT).
Come posso specificarlo all'inizio di un file combinato e minuscolo?
Ho questo al momento:
My Program (GPL)
Copyright 2009-2013, Me
jQuery (GPL/MIT)
Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors
Some other library (MIT)
Copyright 2013, Some other person
This file is part of My Program.
My 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.
My 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 My Program. If not, see <http://www.gnu.org/licenses/>.
...jQuery's code...
...my code...
...some other libraries code...