-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
breaking-change: Build config is de-structured according to platform
- Loading branch information
Showing
11 changed files
with
935 additions
and
403 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
#!/bin/bash | ||
# A script for preparing binaries of Banana 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["Banana"]=$(with_version "The Banana") | ||
names["Banana-Green"]=$(with_version "The Green Banana") | ||
|
||
# Cleanup old builds | ||
rm -rf themes bin | ||
|
||
# Building Banana 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 Banana 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 banana-all.tar.xz | ||
cp ../LICENSE . | ||
tar -cJvf "../bin/banana-all.tar.xz" --exclude="*-Windows" . & | ||
PID=$! | ||
wait $PID | ||
|
||
# Compressing Banana-*-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 |
Oops, something went wrong.