From ab1dc98e6094679f2551de52ce7e34d94a7b6824 Mon Sep 17 00:00:00 2001 From: "Ryan \"Lofenyy\" Medeiros" Date: Sat, 1 Jul 2023 07:18:31 -0600 Subject: [PATCH] Added copyright notices. --- Makefile | 1 + Packaging/Debian.sh | 8 ++++++++ Packaging/GuixRecipe.scm | 8 ++++++++ Tests/main.c | 12 ++++++++++++ 4 files changed, 29 insertions(+) diff --git a/Makefile b/Makefile index 52b7e69..10042fc 100644 --- a/Makefile +++ b/Makefile @@ -40,6 +40,7 @@ dist: mkdir -p "Build/librewands-$(version)" cp -r "Assets/" "Build/librewands-$(version)" cp -r "Documentation/" "Build/librewands-$(version)" + cp -r "Packaging/" "Build/librewands-$(version)" cp -r "Source/" "Build/librewands-$(version)" cp -r "Tests/" "Build/librewands-$(version)" cp -r "Tools/" "Build/librewands-$(version)" diff --git a/Packaging/Debian.sh b/Packaging/Debian.sh index 28a857c..f0de8ba 100755 --- a/Packaging/Debian.sh +++ b/Packaging/Debian.sh @@ -1,3 +1,11 @@ +# This file is part of LibreWands. + +# LibreWands 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. + +# LibreWands 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 LibreWands. If not, see https://www.gnu.org/licenses/. + version=0.0.3 if [ "$1" == "prep" ] diff --git a/Packaging/GuixRecipe.scm b/Packaging/GuixRecipe.scm index b6df733..e5b7c5a 100644 --- a/Packaging/GuixRecipe.scm +++ b/Packaging/GuixRecipe.scm @@ -1,3 +1,11 @@ +; This file is part of LibreWands. + +; LibreWands 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. + +; LibreWands 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 LibreWands. If not, see https://www.gnu.org/licenses/. + (define-module (gnu packages librewands) #:use-module (guix packages) #:use-module (guix download) diff --git a/Tests/main.c b/Tests/main.c index e69de29..71ef684 100644 --- a/Tests/main.c +++ b/Tests/main.c @@ -0,0 +1,12 @@ +// This file is part of LibreWands. + +// LibreWands 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. + +// LibreWands 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 LibreWands. If +// not, see https://www.gnu.org/licenses/.