summaryrefslogtreecommitdiff
path: root/sources/old set up/build.sh
blob: 22cf9cdac996bc11974e12509ff23d62af977a43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# source venv/bin/activate
set -e

mkdir -p ../fonts ../fonts/ttf ../fonts/ttf/static ../fonts/otf #../fonts/woff2

function postprocess_vf {
    gftools fix-nonhinting $1 $1.fix
    mv $1.fix $1
    gftools fix-dsig -f $1
    gftools fix-unwanted-tables $1 -t MVAR
}

echo "GENERATING VFs"
VF_FILE=../fonts/ttf/Karla\[wght]\.ttf
fontmake -g Karla-Roman.glyphs -o variable --output-path $VF_FILE

VF_FILEit=../fonts/ttf/Karla-Italic\[wght]\.ttf
fontmake -g Karla-Italic.glyphs -o variable --output-path $VF_FILEit


echo "POST PROCESSING VFs"

postprocess_vf $VF_FILE
postprocess_vf $VF_FILEit

python3 karla_stat_table.py $VF_FILE
# python3 gen_stat.py $VF_FILE

rm ../fonts/ttf/*gasp.ttf


echo "GENERATING TTFs"
fontmake -g Karla-Roman.glyphs -i -o ttf --output-dir ../fonts/ttf/static

echo "POST PROCESSING TTFs"
ttfs=$(ls ../fonts/ttf/static/*.ttf)
for ttf in $ttfs
do
	ttfautohint $ttf "$ttf.fix";
	mv "$ttf.fix" $ttf;
	
	gftools fix-dsig -f $ttf;
    
	gftools fix-hinting $ttf;
    mv "$ttf.fix" $ttf;
	
	#compressing for woff2
	#fonttools ttLib.woff2 compress $ttf
    
done

echo "GENERATING OTFs"
fontmake -g Karla-Roman.glyphs -i -o otf --output-dir ../fonts/otf/

echo "POST PROCESSING OTFs"
otfs=$(ls ../fonts/otf/*.otf)
for otf in $otfs
do
    gftools fix-dsig -f $otf;
    gftools fix-weightclass $otf;
    #mv "$otf.fix" $otf;
	[ -f $otf.fix ] && mv $otf.fix $otf;
    # psautohint $otf;
done


rm -rf master_ufo/ instance_ufo/

# echo "WOFF2 for static and vf"

# mv ../fonts/ttf/*.woff2 ../fonts/woff2
# mv ../fonts/ttf/static/*.woff2 ../fonts/woff2/static