diff options
Diffstat (limited to 'fonts')
-rw-r--r-- | fonts/.gitignore | 2 | ||||
-rw-r--r-- | fonts/local.mk | 39 |
2 files changed, 41 insertions, 0 deletions
diff --git a/fonts/.gitignore b/fonts/.gitignore new file mode 100644 index 0000000..e4a30a6 --- /dev/null +++ b/fonts/.gitignore @@ -0,0 +1,2 @@ +# Files generated by Makefile +*.ttf diff --git a/fonts/local.mk b/fonts/local.mk new file mode 100644 index 0000000..c6f8651 --- /dev/null +++ b/fonts/local.mk @@ -0,0 +1,39 @@ +fontsdir = $(pkgdatadir)/fonts +uninstall_dirs += $(fontsdir) + +dist_noinst_DATA = \ + %reldir%/FifteenTwenty/COPYING \ + %reldir%/FifteenTwenty/COPYING-CC0 \ + %reldir%/FifteenTwenty/FifteenTwenty-Bold.otf \ + %reldir%/FifteenTwenty/FifteenTwenty-BoldOblique.otf \ + %reldir%/FifteenTwenty/FifteenTwenty-Demi.otf \ + %reldir%/FifteenTwenty/FifteenTwenty-DemiOblique.otf \ + %reldir%/FifteenTwenty/FifteenTwenty-Light.otf \ + %reldir%/FifteenTwenty/FifteenTwenty-LightOblique.otf \ + %reldir%/FifteenTwenty/FifteenTwenty-Oblique.otf \ + %reldir%/FifteenTwenty/FifteenTwenty-demo.png \ + %reldir%/FifteenTwenty/FifteenTwenty.otf \ + %reldir%/FifteenTwenty/FifteenTwentyUltraLight-Oblique.otf \ + %reldir%/FifteenTwenty/FifteenTwentyUltraLight.otf \ + %reldir%/FifteenTwenty/README.md \ + %reldir%/FifteenTwenty/fontlog.txt \ + %reldir%/FifteenTwenty/src/FifteenTwenty-Bold.sfd \ + %reldir%/FifteenTwenty/src/FifteenTwenty-BoldOblique.sfd \ + %reldir%/FifteenTwenty/src/FifteenTwenty-Demi.sfd \ + %reldir%/FifteenTwenty/src/FifteenTwenty-DemiOblique.sfd \ + %reldir%/FifteenTwenty/src/FifteenTwenty-Light.sfd \ + %reldir%/FifteenTwenty/src/FifteenTwenty-LightOblique.sfd \ + %reldir%/FifteenTwenty/src/FifteenTwenty-Oblique.sfd \ + %reldir%/FifteenTwenty/src/FifteenTwenty-Regular.sfd \ + %reldir%/FifteenTwenty/src/FifteenTwenty-UltraLight.sfd \ + %reldir%/FifteenTwenty/src/FifteenTwenty-UltraLightOblique.sfd +nodist_fonts_DATA = \ + %reldir%/FifteenTwenty/src/FifteenTwenty-Regular.ttf + +CLEANFILES += \ + $(nodist_fonts_DATA) + +CONFIG_CLEAN_FILES += %reldir%/$(am__dirstamp) +%reldir%/$(am__dirstamp): + @$(MKDIR_P) %reldir% + @: > %reldir%/$(am__dirstamp) |