diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-06-21 23:45:12 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-06-21 23:45:12 +0400 |
commit | 915c63f96325797aacc7138a4c1e9aba7e5002f4 (patch) | |
tree | 568da075b880a192b5fffac018929136f0719b84 | |
parent | e573a5722864b6250dc465904adc5aed57ede8de (diff) |
feat: run `fc-cache` after installing fontsshow
- Add fontconfig to build time dependencies.
-rw-r--r-- | Makefile | 1 | ||||
-rwxr-xr-x | dep.sh | 9 |
2 files changed, 6 insertions, 4 deletions
@@ -109,6 +109,7 @@ dmenu-install dwm-install slstatus-install st-install: font1-install font2-install: tar xf $< $(COPY) $$(basename $< .tar.gz) $(FONTDIR) + fc-cache check: @./dep.sh @@ -83,10 +83,11 @@ check \ # Build dependencies check \ - cc:"c compiler is missing" \ - curl \ - ld:"linker is missing" \ - make \ + cc:"c compiler is missing" \ + curl \ + fc-cache:"font config is missing" \ + ld:"linker is missing" \ + make \ tar || retval=1 # Libraries |