This commit is contained in:
Abdulkaiz Khatri 2023-12-31 10:11:34 +05:30
parent 4cb22d21bb
commit 06a241f2a3
2 changed files with 7 additions and 2 deletions

View file

@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
Opensource, compact, and material designed cursor set. Opensource, compact, and material designed cursor set.
Copyright (C) 2018 Abdulkaiz Khatri Copyright (C) 2018 Abdulkaiz Khatri
This program is free software: you can redistribute it and/or modify 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 it under the terms of the GNU General Public License as published by
@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
Bibata_Cursor Copyright (C) 2018 Abdulkaiz Khatri Bibata_Cursor Copyright (C) 2018 Abdulkaiz Khatri
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.

View file

@ -51,10 +51,13 @@ for key in "${!names[@]}"; do
wait $PID wait $PID
done done
# Compressing Bibata.tar.xz
cp ../LICENSE .
tar -cJvf "../bin/Bibata.tar.xz" --exclude="*-Windows" . & tar -cJvf "../bin/Bibata.tar.xz" --exclude="*-Windows" . &
PID=$! PID=$!
wait $PID wait $PID
# Compressing Bibata-*-Windows
for key in "${!names[@]}"; do for key in "${!names[@]}"; do
zip -rv "../bin/${key}-Windows.zip" "${key}-Small-Windows" "${key}-Regular-Windows" "${key}-Large-Windows" "${key}-Extra-Large-Windows" & zip -rv "../bin/${key}-Windows.zip" "${key}-Small-Windows" "${key}-Regular-Windows" "${key}-Large-Windows" "${key}-Extra-Large-Windows" &
PID=$! PID=$!
@ -63,4 +66,6 @@ done
cd .. cd ..
# Copying License File for 'bitmaps'
cp LICENSE bitmaps/
zip -rv bin/bitmaps.zip bitmaps zip -rv bin/bitmaps.zip bitmaps