Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
Version 2.2
Browse files Browse the repository at this point in the history
Relicense project to GPL-3.0
This affects all previous commits
  • Loading branch information
RaptaG authored Sep 29, 2022
1 parent 52feade commit 18c0e13
Show file tree
Hide file tree
Showing 3 changed files with 648 additions and 197 deletions.
36 changes: 22 additions & 14 deletions CAAIS
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
#!/usr/bin/env bash

# CAAIS, a bash script to install or remove Chaotic-AUR.
# Copyright (C) 2022 RaptaG
#
# 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 <https://www.gnu.org/licenses/>.

# Definitions
ver="2.1"
ver="2.2"
fname="$(basename $0)"
appendInPacmanConf="$(grep 'chaotic-aur' /etc/pacman.conf)"
isArchBased="$(grep 'ID_LIKE=arch' /etc/os-release | awk -F 'ID_LIKE=' '{print $2}')"
Expand Down Expand Up @@ -168,7 +184,7 @@ case "$1" in
echo
echo "-r, --remove Remove Chaotic-AUR from your system"
echo
echo "The main repo with the source code, the license and all the info related is availiable here:"
echo "The source code, the license and all the info related is availiable here:"
echo "https://github.com/RaptaG/CAAIS"
exit 0
;;
Expand All @@ -181,19 +197,11 @@ case "$1" in
echo "2) terminalmaid (Pull Request #1)"
echo "3) TruncatedDinosour (Pull Request #2)"
echo
echo "Copyright © 2022 RaptaG"
echo
echo 'Licensed under the Apache License, Version 2.0 (the "License");'
echo "you may not use this file except in compliance with the License."
echo "You may obtain a copy of the License at"
echo
echo " http://www.apache.org/licenses/LICENSE-2.0"
echo
echo "Unless required by applicable law or agreed to in writing, software"
echo 'distributed under the License is distributed on an "AS IS" BASIS,'
echo "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied."
echo "See the License for the specific language governing permissions and"
echo "limitations under the License."
echo "CAAIS, Copyright (C) 2022 RaptaG"
echo "This program comes with ABSOLUTELY NO WARRANTY; for details see <https://www.gnu.org/licenses/>"
echo "This is free software, and you are welcome to redistribute it"
echo "under certain conditions; See <https://www.gnu.org/licenses/> for details."
exit 0
;;
-i | install)
Expand Down
Loading

0 comments on commit 18c0e13

Please sign in to comment.