prepare for using zlib instead of stb for compression Unifont not included due to its size... I have plans to load it in a more size-efficient way
8 lines
132 B
Bash
Executable file
8 lines
132 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir -p compressed
|
|
for i in *.ttf *.otf; do
|
|
echo "$i"
|
|
cat "$i" | zlib-flate -compress=9 > compressed/"$i".zl
|
|
done
|