Skip to content

Commit 7bb332a

Browse files
committed
Remove references to EB garamond
1 parent 95d5ad9 commit 7bb332a

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ Beginner handout [(download pdf)](https://matplotlib.org/cheatsheets/handout-beg
2727
or https://github.com/adobe-fonts/source-sans-pro/tree/release/OTF
2828
* `fonts/source-serif-pro/*` : See https://fonts.google.com/specimen/Source+Serif+Pro
2929
or https://github.com/adobe-fonts/source-serif-pro/tree/release/OTF
30-
* `fonts/eb-garamond/*` : See https://bitbucket.org/georgd/eb-garamond/src/master
3130
* `fonts/pacifico/*` : See https://fonts.google.com/download?family=Pacifico
3231

3332
On Linux, with `make` installed, the fonts can be set up with the following command:

fonts/Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
FONT_DIRS := eb-garamond roboto roboto-mono roboto-slab source-code-pro source-sans-pro source-serif-pro pacifico
1+
FONT_DIRS := roboto roboto-mono roboto-slab source-code-pro source-sans-pro source-serif-pro pacifico
22

3-
EB_GARAMOND_ZIP := https://bitbucket.org/georgd/eb-garamond/downloads/EBGaramond-0.016.zip
43
ROBOTO_ZIP := https://github.com/googlefonts/roboto/releases/download/v2.138/roboto-unhinted.zip
54
ROBOTO_MONO_ZIP := https://github.com/googlefonts/RobotoMono/archive/8f651634e746da6df6c2c0be73255721d24f2372.zip
65
ROBOTO_SLAB_ZIP := https://github.com/googlefonts/robotoslab/archive/a65e6d00d8e3e7ee2fabef844e58fa12690384d2.zip
@@ -18,7 +17,6 @@ default: all
1817
.PHONY: all
1918
all: sources
2019
mkdir -p $(FONT_DIRS)
21-
cd eb-garamond && unzip -j /tmp/eb-garamond.zip "EBGaramond-0.016/otf/*.otf" $(UNZIP_FLAGS)
2220
cd roboto && unzip -j /tmp/roboto.zip "*.ttf" $(UNZIP_FLAGS)
2321
cd roboto-mono && unzip -j /tmp/roboto-mono.zip "RobotoMono-8f651634e746da6df6c2c0be73255721d24f2372/fonts/ttf/*.ttf" $(UNZIP_FLAGS)
2422
cd roboto-slab && unzip -j /tmp/roboto-slab.zip "robotoslab-a65e6d00d8e3e7ee2fabef844e58fa12690384d2/fonts/static/*.ttf" $(UNZIP_FLAGS)
@@ -29,7 +27,6 @@ all: sources
2927

3028
.PHONY: sources
3129
sources:
32-
wget $(EB_GARAMOND_ZIP) -O /tmp/eb-garamond.zip
3330
wget $(ROBOTO_ZIP) -O /tmp/roboto.zip
3431
wget $(ROBOTO_MONO_ZIP) -O /tmp/roboto-mono.zip
3532
wget $(ROBOTO_SLAB_ZIP) -O /tmp/roboto-slab.zip

0 commit comments

Comments
 (0)