dotfiles/bin/groff_ttf.sh

89 lines
2.6 KiB
Bash
Raw Normal View History

2020-11-23 16:54:04 +00:00
#!/bin/sh
set -e
# generate pfa
2020-11-24 10:30:38 +00:00
if [ "$#" -lt 2 ]; then
CMD=$(basename "$0")
echo "Usage: $CMD <*.ttf/ttc/otf> <style>"
echo " regular : $CMD sarasa-ui-sc-regular.ttf R"
echo " italic : $CMD sarasa-ui-sc-italic.ttf I"
echo " bold : $CMD sarasa-ui-sc-bold.ttf B"
echo " bold italic : $CMD sarasa-ui-sc-bolditalic.ttf BI"
echo
echo "note: the suffix of groff_name (R/I/B/BI) is essential!"
fi
DIR=$(dirname "$(readlink -f "$0")")
FONTPATH=$(readlink -f "$1")
2020-11-23 16:54:04 +00:00
# with R B I suffix
2020-11-24 10:30:38 +00:00
STYLE=$2
2020-11-24 18:18:32 +00:00
case "$STYLE" in
R|B|I|BI)
;;
*)
echo "warning: unknown style $STYLE, are u sure? [y/N]"
read -r CONFIRM_STYLE
if [ "$CONFIRM_STYLE" != 'y' ]; then
exit
fi
;;
esac
2020-11-24 10:30:38 +00:00
GROFF_CURRENT=$(readlink -f /usr/share/groff/current)
GROFF_SITEFONT=/usr/share/groff/site-font
2020-11-23 16:54:04 +00:00
TMPDIR="$(mktemp -d)"
2020-11-24 18:18:32 +00:00
trap 'rm -rf '"$TMPDIR"';cd - >/dev/null' EXIT
2020-11-23 16:54:04 +00:00
cd "$TMPDIR"
2020-11-24 10:30:38 +00:00
echo "Change working directory to: $(pwd)"
echo "Using fontforge to generate PFA"
fontforge -script "$DIR/generate-pfa.pe" "$FONTPATH" >/dev/null 2>&1
AFM=$(ls ./*.afm)
PFA=$(ls ./*.pfa)
2020-11-23 16:54:04 +00:00
2020-11-24 10:30:38 +00:00
FONTNAME=$(awk '$1 == "FamilyName" {print substr($0, 12)}' "$AFM" | sed -r 's/\s+//g')
GROFFNAME=$FONTNAME$STYLE
echo "Converting to groff font"
afmtodit "$AFM" "$GROFF_CURRENT/font/devps/generate/textmap" "$GROFFNAME" >/dev/null 2>&1
INA=$(awk '$1 == "internalname" { print $2; exit; }' "$GROFFNAME")
echo "groff name : $GROFFNAME"
echo "internalname : $INA"
echo "Copying to $GROFF_SITEFONT"
sudo mkdir -p $GROFF_SITEFONT/devps
2020-11-23 16:54:04 +00:00
sudo cp "$PFA" "$GROFFNAME" /usr/share/groff/site-font/devps
2020-11-24 10:30:38 +00:00
echo "Adding font to downloadable list"
2020-11-23 16:54:04 +00:00
if ! grep "$PFA" "$GROFF_CURRENT/font/devps/download" ; then
2020-11-24 10:30:38 +00:00
printf '%s\t%s\n' "$INA" "$PFA" | sudo tee -a "$GROFF_CURRENT/font/devps/download" >/dev/null
2020-11-23 16:54:04 +00:00
fi
2020-11-24 10:30:38 +00:00
2020-11-24 18:18:32 +00:00
echo
2020-11-24 10:30:38 +00:00
echo "Done, now you may use this font in your .ms file:"
2020-11-24 18:18:32 +00:00
printf "\033[32m"
2020-11-24 10:30:38 +00:00
echo " .ds FAM $FONTNAME"
2020-11-24 18:18:32 +00:00
if [ "$STYLE" != "R" ] ; then
echo " .$STYLE \"text\""
fi
printf "\033[0m"
2020-11-24 10:30:38 +00:00
echo
echo "Then, use following command to generate pdf file:"
2020-11-24 18:18:32 +00:00
printf "\033[32m"
2020-11-24 10:30:38 +00:00
echo " groff -ms -U -Kutf8 input.ms > tmp.ps"
echo " ps2pdf tmp.ps output.pdf"
2020-11-24 18:18:32 +00:00
printf "\033[0m"
2020-11-24 10:30:38 +00:00
echo
#sudo ln -sf "/usr/share/groff/site-font/devps/$PFA" "/usr/share/groff/site-font/devpdf/$PFA"
#sudo ln -sf "/usr/share/groff/site-font/devps/$GROFFNAME" "/usr/share/groff/site-font/devpdf/$GROFFNAME"
2020-11-23 16:54:04 +00:00
#if ! grep "$PFA" "$GROFF_CURRENT/font/devpdf/download" ; then
#printf '\t%s\t%s\n' "$GROFFNAME" "$PFA" >> "$GROFF_CURRENT/font/devpdf/download"
#fi
# to insert picture: convert input.jpg output.pdf
# in msfile use: .PICPDF output.pdf