12 lines
178 B
Bash
Executable File
12 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ARCH=$1
|
|
if [ -z "$ARCH" ]; then
|
|
echo "usage: $0 <arch>"
|
|
exit 1
|
|
fi
|
|
|
|
setfont latarcyrheb-sun16
|
|
../utils/snarffont > screenfont-$ARCH
|
|
gzip -9 -f screenfont-$ARCH
|