Manually install the Arial replacement font when make install is run.

This commit is contained in:
Erich E. Hoover 2014-02-26 13:01:53 -07:00
parent f5f50d333c
commit 9fd0a6eb9d
3 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,5 @@
install:
cp arial.ttf $(DESTDIR)/fonts/arial.ttf;
uninstall:
rm $(DESTDIR)/fonts/arial.ttf;

Binary file not shown.

View File

@ -1,3 +1,5 @@
SUBDIRS=10-Missing_Fonts
PATCH:=patch -N -p0 --strip=1
install:
@ -14,6 +16,11 @@ install:
done \
done
# Apply binary patches to Wine
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir; \
done
# Update the configure script
cd $(DESTDIR); autoreconf;