mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-09-13 09:17:20 -07:00
Manually install the Arial replacement font when make install is run.
This commit is contained in:
parent
f5f50d333c
commit
9fd0a6eb9d
5
patches/10-Missing_Fonts/Makefile
Normal file
5
patches/10-Missing_Fonts/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
install:
|
||||
cp arial.ttf $(DESTDIR)/fonts/arial.ttf;
|
||||
|
||||
uninstall:
|
||||
rm $(DESTDIR)/fonts/arial.ttf;
|
BIN
patches/10-Missing_Fonts/arial.ttf
Normal file
BIN
patches/10-Missing_Fonts/arial.ttf
Normal file
Binary file not shown.
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user