Files
BreezeX_Cursor/build.sh
T
2024-07-02 10:13:46 +05:30

90 lines
2.0 KiB
Bash
Executable File

#!/bin/bash
# A script for preparing binaries of BreezeX Cursors, created by Abdulkaiz Khatri.
version="v2.0.1"
error() (
set -o pipefail
"$@" 2> >(sed $'s,.*,\e[31m&\e[m,' >&2)
)
get_config_file() {
local key="${1}"
local cfg_file="build.toml"
if [[ $key == *"Right"* ]]; then
cfg_file="build.right.toml"
fi
echo $cfg_file
}
with_version() {
local comment="${1}"
echo "$comment ($version)"
}
if ! type -p ctgen >/dev/null; then
error ctgen
exit 127 # exit program with "command not found" error code
fi
declare -A names
names["BreezeX-Dark"]=$(with_version "Extended KDE Dark")
names["BreezeX-Black"]=$(with_version "Extended KDE Black")
names["BreezeX-Light"]=$(with_version "Extended KDE Light")
# Cleanup old builds
rm -rf themes bin
# Building BreezeX XCursor binaries
for key in "${!names[@]}"; do
comment="${names[$key]}"
cfg=$(get_config_file key)
ctgen "configs/x.$cfg" -p x11 -d "bitmaps/$key" -n "$key" -c "$comment XCursors" &
PID=$!
wait $PID
done
# Building BreezeX Windows binaries
for key in "${!names[@]}"; do
comment="${names[$key]}"
cfg=$(get_config_file key)
ctgen "configs/win_rg.$cfg" -d "bitmaps/$key" -n "$key-Regular" -c "$comment Regular Windows Cursors" &
ctgen "configs/win_lg.$cfg" -d "bitmaps/$key" -n "$key-Large" -c "$comment Large Windows Cursors" &
ctgen "configs/win_xl.$cfg" -d "bitmaps/$key" -n "$key-Extra-Large" -c "$comment Extra Large Windows Cursors" &
PID=$!
wait $PID
done
# Compressing Binaries
mkdir -p bin
cd themes || exit
for key in "${!names[@]}"; do
tar -cJvf "../bin/${key}.tar.xz" "${key}" &
PID=$!
wait $PID
done
# Compressing BreezeX.tar.xz
cp ../LICENSE .
tar -cJvf "../bin/BreezeX.tar.xz" --exclude="*-Windows" . &
PID=$!
wait $PID
# Compressing BreezeX-*-Windows
for key in "${!names[@]}"; do
zip -rv "../bin/${key}-Windows.zip" "${key}-Regular-Windows" "${key}-Large-Windows" "${key}-Extra-Large-Windows" &
PID=$!
wait $PID
done
cd ..
# Copying License File for 'bitmaps'
cp LICENSE bitmaps/
zip -rv bin/bitmaps.zip bitmaps