From 81859106501a88530a95990680b10f1c0be86548 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Tue, 10 Sep 2013 01:32:18 -0700 Subject: [PATCH] Add GPL copyright license text to shell scripts. --- cycript.in | 20 ++++++++++++++++++++ make.sh | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/cycript.in b/cycript.in index 156e7e1..ebbc739 100644 --- a/cycript.in +++ b/cycript.in @@ -1,2 +1,22 @@ #!/usr/bin/env bash + +# Cycript - Optimizing JavaScript Compiler/Runtime +# Copyright (C) 2009-2013 Jay Freeman (saurik) + +# GNU General Public License, Version 3 {{{ +# +# Cycript 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. +# +# Cycript 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 Cycript. If not, see . +# }}} + DYLD_LIBRARY_PATH=.libs exec .libs/cycript "$@" diff --git a/make.sh b/make.sh index bd2c7ac..a30c27c 100755 --- a/make.sh +++ b/make.sh @@ -1,2 +1,22 @@ #!/usr/bin/env bash + +# Cycript - Optimizing JavaScript Compiler/Runtime +# Copyright (C) 2009-2013 Jay Freeman (saurik) + +# GNU General Public License, Version 3 {{{ +# +# Cycript 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. +# +# Cycript 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 Cycript. If not, see . +# }}} + exec make -f xcode.mk "$@" -- 2.47.2