Description: Fix install location of fonts
 Makefile currently install otf fonts to truetype directory
Author: Balasankar C <balasankarc@autistici.org>
Bug: https://gitlab.com/smc/manjari/merge_requests/4
Last-Update: 2017-06-25
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Makefile
+++ b/Makefile
@@ -31,9 +31,9 @@
 		$(PY) $(buildscript) -t woff2 -i $$font.ttf;\
 	done;
 
-install: compile
+install: ttf
 	@for font in `echo ${fonts}`;do \
-		install -D -m 0644 $${font}.otf ${DESTDIR}/${fontpath}/$${font}.otf;\
+		install -D -m 0644 $${font}.ttf ${DESTDIR}/${fontpath}/$${font}.ttf;\
 	done;
 
 ifeq ($(shell ls -l *.ttf 2>/dev/null | wc -l),0)
