diff --git a/patches/10-Missing_Fonts/Makefile b/patches/10-Missing_Fonts/Makefile new file mode 100644 index 00000000..ff7b15a2 --- /dev/null +++ b/patches/10-Missing_Fonts/Makefile @@ -0,0 +1,5 @@ +install: + cp arial.ttf $(DESTDIR)/fonts/arial.ttf; + +uninstall: + rm $(DESTDIR)/fonts/arial.ttf; diff --git a/patches/10-Missing_Fonts/arial.ttf b/patches/10-Missing_Fonts/arial.ttf new file mode 100644 index 00000000..d3fed59d Binary files /dev/null and b/patches/10-Missing_Fonts/arial.ttf differ diff --git a/patches/Makefile b/patches/Makefile index 377b8df7..ea3d3c54 100644 --- a/patches/Makefile +++ b/patches/Makefile @@ -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;