blob: 02bc36d29e1fc4da9a179bafd8ff582bbfa3f7c1 (
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
|
fontpath=/usr/share/fonts/truetype/malayalam
fonts="AnjaliOldLipi Dyuthi Kalyani Meera Rachana RaghuMalayalamSans Suruma"
default: clean compile
all: clean compile test webfonts
compile:
# generate ttf files from sfd files
@for font in `echo ${fonts}`; \
do \
./generate.pe $${font}/$${font}.sfd; done
install: */*.ttf
# copy ttf files to system font directory
@for font in `echo ${fonts}`; \
do \
install -D -m 0644 $${font}/$${font}.ttf ${DESTDIR}/${fontpath}/$${font}.ttf; done
# copy fontconfig configuration files to system fontconfig configuration directory
install -D -m 0644 malayalam-fonts.conf ${DESTDIR}/etc/fonts/conf.avail/67-malayalam-fonts.conf
if ! [ -d ${DESTDIR}/etc/fonts/conf.d ]; then mkdir ${DESTDIR}/etc/fonts/conf.d; fi
ln -sf ../conf.avail/67-malayalam-fonts.conf ${DESTDIR}/etc/fonts/conf.d/67-malayalam-fonts.conf
uninstall:
# remove fonts from system font directories
@for font in `echo ${fonts}`; \
do \
if [ -f ${DESTDIR}/${fontpath}/$${font}.ttf ]; then rm -f ${DESTDIR}/${fontpath}/$${font}.ttf; fi \
done
# remove fontconfig configuration files from system fontconfig configuration directory
if [ -f ${DESTDIR}/etc/fonts/conf.d/67-malayalam-fonts.conf ]; then \
rm ${DESTDIR}/etc/fonts/conf.d/67-malayalam-fonts.conf; fi
if [ -f ${DESTDIR}/etc/fonts/conf.avail/67-malayalam-fonts.conf ]; then \
rm ${DESTDIR}/etc/fonts/conf.avail/67-malayalam-fonts.conf; fi
if [ -d ${DESTDIR}/${fontpath} -a -z "$(ls -A ${DESTDIR}/${fontpath})" ] ; then rmdir ${DESTDIR}/${fontpath}; fi
clean:
# remove ttf fonts
@for font in `echo ${fonts}`; \
do \
if [ -f $${font}/$${font}.ttf ]; then rm -f $${font}/$${font}.ttf; fi \
done
@rm -rf tests/*.pdf webfonts;
test: compile
# Test the fonts
@for font in `echo ${fonts}`; \
do \
echo "Testing font $${font}";\
hb-view $${font}/$${font}.ttf --debug --text-file tests/tests.txt --output-file tests/$${font}.pdf; \
done
webfonts: compile
# generate webfonts
@for font in `echo ${fonts}`; \
do \
mkdir -p webfonts/$${font}; \
sfntly -w $${font}/$${font}.ttf webfonts/$${font}/$${font}.woff; \
sfntly -e -x $${font}/$${font}.ttf webfonts/$${font}/$${font}.eot; \
echo "Webfonts generated for $${font}"; \
done
|