Code cleanup

This commit is contained in:
Silke 2014-10-28 19:02:51 +01:00
parent 8cb6ba6c8d
commit 2b22489532
1 changed files with 41 additions and 41 deletions

View File

@ -1,16 +1,17 @@
#!/bin/sh
#!/bin/bash
# Simple Script to rebuild the fonts in this package.
font="sourceserifpro"
fontcap="SourceSerifPro"
# Parameters
fontname="SourceSerifPro"
vend="adobe"
#mv fonts/enc/dvips/$font fonts/enc/dvips/$vend
#mv fonts/map/dvips/$font fonts/map/dvips/$vend
# Remove capitals from font
font=${fontname,,}
# Backup the hand-written package
mv tex/latex/$font/$font.sty tex/latex/$font/$font.sty.tmp
# Font features (Version 1.014)
# Font features (font v1.014)
# aalt Access All Alternates
# case Case-Sensitive Forms
# dnom Denominators
@ -44,10 +45,9 @@ autoinst fonts/opentype/$vend/$font/* \
-noornaments \
-noupdmap
# Move the generated file and the hand-written one back
mv tex/latex/$font/$fontcap.sty tex/latex/$font/$font-type1-autoinst.sty
mv tex/latex/$font/$font.sty.tmp tex/latex/$font/$font.sty
rm -r fonts/type42
rm -r fonts/vpl
rm -r fonts/pl
rm -r fonts/truetype
# Remove empty directories
find . -type d -empty -delete