diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..d899315 --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,11 @@ +{ + "permissions": { + "allow": [ + "Bash(grep:*)", + "Bash(ls -1 Formula/*.rb)", + "Bash(ls:*)", + "Bash(find:*)", + "Bash(git ls-tree:*)" + ] + } +} diff --git a/.fontfoldercleanup/create_homebrew_formula.py b/.fontfoldercleanup/create_homebrew_formula.py index f9da409..5259917 100755 --- a/.fontfoldercleanup/create_homebrew_formula.py +++ b/.fontfoldercleanup/create_homebrew_formula.py @@ -95,23 +95,23 @@ class Font{class_name} < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/{font_name}/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/{font_name}/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/{font_name}/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/{font_name}/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/{font_name}/web/*.{{woff,woff2,eot,svg}}").each do |font| + Dir.glob("homebrew-fonts/font_files/{font_name}/web/*.{{woff,woff2,eot,svg}}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"{formula_name}").mkpath - Dir.glob("homebrew-fonts-main/font_files/{font_name}/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/{font_name}/other_files/*").each do |file| system "cp", "-r", file, share/"{formula_name}" end end diff --git a/CLAUDE.md b/CLAUDE.md index b73dc09..11b2dc5 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -48,6 +48,6 @@ python3 .fontfoldercleanup/cleanup_font_folders.py --path font_files ## Key Constraints - Python 3, standard library only (pathlib, shutil, argparse, re). pytest is the sole dependency. -- Formulae download from `http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz` and expect the archive to unpack as `homebrew-fonts-main/`. +- Formulae download from `http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz` and expect the archive to unpack as `homebrew-fonts/`. - CI runs `uv run pytest` on push/PR to main, plus `brew audit` on macOS (non-blocking). - `PROJECT.md` is the canonical project description. When updating project rules, update `PROJECT.md` first, then sync `.cursorrules`, `.github/copilot-instructions.md`, and `.claude/skills/project-context/SKILL.md`. diff --git a/Formula/font-abbiescriptpro-rg.rb b/Formula/font-abbiescriptpro-rg.rb index a69dd87..3ffeeda 100644 --- a/Formula/font-abbiescriptpro-rg.rb +++ b/Formula/font-abbiescriptpro-rg.rb @@ -19,23 +19,23 @@ class FontAbbiescriptproRg < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-abbiescriptpro-rg/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-abbiescriptpro-rg/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-abbiescriptpro-rg/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-abbiescriptpro-rg/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-abbiescriptpro-rg/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-abbiescriptpro-rg/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"abbiescriptpro-rg").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-abbiescriptpro-rg/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-abbiescriptpro-rg/other_files/*").each do |file| system "cp", "-r", file, share/"abbiescriptpro-rg" end end diff --git a/Formula/font-acrylic-hand.rb b/Formula/font-acrylic-hand.rb index f338a0f..0ed6fb0 100644 --- a/Formula/font-acrylic-hand.rb +++ b/Formula/font-acrylic-hand.rb @@ -19,23 +19,23 @@ class FontAcrylicHand < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-acrylic-hand/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-acrylic-hand/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-acrylic-hand/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-acrylic-hand/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-acrylic-hand/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-acrylic-hand/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"acrylic-hand").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-acrylic-hand/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-acrylic-hand/other_files/*").each do |file| system "cp", "-r", file, share/"acrylic-hand" end end diff --git a/Formula/font-agpx.rb b/Formula/font-agpx.rb index 0164458..2b3b319 100644 --- a/Formula/font-agpx.rb +++ b/Formula/font-agpx.rb @@ -19,23 +19,23 @@ class FontAgpx < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-agpx/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-agpx/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-agpx/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-agpx/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-agpx/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-agpx/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"agpx").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-agpx/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-agpx/other_files/*").each do |file| system "cp", "-r", file, share/"agpx" end end diff --git a/Formula/font-airosol.rb b/Formula/font-airosol.rb index abc7f6a..439074d 100644 --- a/Formula/font-airosol.rb +++ b/Formula/font-airosol.rb @@ -19,23 +19,23 @@ class FontAirosol < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-airosol/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-airosol/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-airosol/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-airosol/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-airosol/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-airosol/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"airosol").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-airosol/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-airosol/other_files/*").each do |file| system "cp", "-r", file, share/"airosol" end end diff --git a/Formula/font-alphalyrae.rb b/Formula/font-alphalyrae.rb index 2f79aed..2982ba0 100644 --- a/Formula/font-alphalyrae.rb +++ b/Formula/font-alphalyrae.rb @@ -19,23 +19,23 @@ class FontAlphalyrae < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-alphalyrae/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-alphalyrae/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-alphalyrae/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-alphalyrae/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-alphalyrae/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-alphalyrae/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"alphalyrae").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-alphalyrae/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-alphalyrae/other_files/*").each do |file| system "cp", "-r", file, share/"alphalyrae" end end diff --git a/Formula/font-angular.rb b/Formula/font-angular.rb index 1c18cb7..2ddbb87 100644 --- a/Formula/font-angular.rb +++ b/Formula/font-angular.rb @@ -19,23 +19,23 @@ class FontAngular < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-angular/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-angular/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-angular/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-angular/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-angular/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-angular/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"angular").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-angular/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-angular/other_files/*").each do |file| system "cp", "-r", file, share/"angular" end end diff --git a/Formula/font-arinoe.rb b/Formula/font-arinoe.rb index 5323ccc..bcdd8a1 100644 --- a/Formula/font-arinoe.rb +++ b/Formula/font-arinoe.rb @@ -19,23 +19,23 @@ class FontArinoe < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-arinoe/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-arinoe/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-arinoe/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-arinoe/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-arinoe/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-arinoe/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"arinoe").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-arinoe/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-arinoe/other_files/*").each do |file| system "cp", "-r", file, share/"arinoe" end end diff --git a/Formula/font-averasanstc.rb b/Formula/font-averasanstc.rb index 1503b21..c89af93 100644 --- a/Formula/font-averasanstc.rb +++ b/Formula/font-averasanstc.rb @@ -19,23 +19,23 @@ class FontAverasanstc < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-averasanstc/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-averasanstc/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-averasanstc/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-averasanstc/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-averasanstc/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-averasanstc/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"averasanstc").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-averasanstc/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-averasanstc/other_files/*").each do |file| system "cp", "-r", file, share/"averasanstc" end end diff --git a/Formula/font-baduy.rb b/Formula/font-baduy.rb index b4280ea..3b20d7c 100644 --- a/Formula/font-baduy.rb +++ b/Formula/font-baduy.rb @@ -19,23 +19,23 @@ class FontBaduy < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-baduy/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-baduy/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-baduy/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-baduy/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-baduy/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-baduy/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"baduy").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-baduy/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-baduy/other_files/*").each do |file| system "cp", "-r", file, share/"baduy" end end diff --git a/Formula/font-bee-honey.rb b/Formula/font-bee-honey.rb index 985cdfe..e316897 100644 --- a/Formula/font-bee-honey.rb +++ b/Formula/font-bee-honey.rb @@ -19,23 +19,23 @@ class FontBeeHoney < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-bee-honey/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-bee-honey/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-bee-honey/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-bee-honey/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-bee-honey/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-bee-honey/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"bee-honey").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-bee-honey/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-bee-honey/other_files/*").each do |file| system "cp", "-r", file, share/"bee-honey" end end diff --git a/Formula/font-benford.rb b/Formula/font-benford.rb index d747113..08bf0c4 100644 --- a/Formula/font-benford.rb +++ b/Formula/font-benford.rb @@ -19,23 +19,23 @@ class FontBenford < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-benford/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-benford/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-benford/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-benford/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-benford/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-benford/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"benford").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-benford/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-benford/other_files/*").each do |file| system "cp", "-r", file, share/"benford" end end diff --git a/Formula/font-bobby-jones-soft-free.rb b/Formula/font-bobby-jones-soft-free.rb index 1e2e07d..5759934 100644 --- a/Formula/font-bobby-jones-soft-free.rb +++ b/Formula/font-bobby-jones-soft-free.rb @@ -19,23 +19,23 @@ class FontBobbyJonesSoftFree < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-bobby-jones-soft-free/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-bobby-jones-soft-free/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-bobby-jones-soft-free/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-bobby-jones-soft-free/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-bobby-jones-soft-free/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-bobby-jones-soft-free/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"bobby-jones-soft-free").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-bobby-jones-soft-free/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-bobby-jones-soft-free/other_files/*").each do |file| system "cp", "-r", file, share/"bobby-jones-soft-free" end end diff --git a/Formula/font-bouncy_castle_free.rb b/Formula/font-bouncy_castle_free.rb index 562f6b3..4ddcc71 100644 --- a/Formula/font-bouncy_castle_free.rb +++ b/Formula/font-bouncy_castle_free.rb @@ -19,23 +19,23 @@ class FontBouncyCastleFree < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-bouncy_castle_free/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-bouncy_castle_free/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-bouncy_castle_free/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-bouncy_castle_free/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-bouncy_castle_free/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-bouncy_castle_free/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"bouncy_castle_free").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-bouncy_castle_free/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-bouncy_castle_free/other_files/*").each do |file| system "cp", "-r", file, share/"bouncy_castle_free" end end diff --git a/Formula/font-brightsight-02.rb b/Formula/font-brightsight-02.rb index c4bd7be..97c0d88 100644 --- a/Formula/font-brightsight-02.rb +++ b/Formula/font-brightsight-02.rb @@ -19,23 +19,23 @@ class FontBrightsight02 < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-brightsight-02/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-brightsight-02/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-brightsight-02/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-brightsight-02/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-brightsight-02/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-brightsight-02/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"brightsight-02").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-brightsight-02/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-brightsight-02/other_files/*").each do |file| system "cp", "-r", file, share/"brightsight-02" end end diff --git a/Formula/font-brixtonline.rb b/Formula/font-brixtonline.rb index e330b17..fd0f0e2 100644 --- a/Formula/font-brixtonline.rb +++ b/Formula/font-brixtonline.rb @@ -19,23 +19,23 @@ class FontBrixtonline < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-brixtonline/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-brixtonline/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-brixtonline/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-brixtonline/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-brixtonline/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-brixtonline/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"brixtonline").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-brixtonline/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-brixtonline/other_files/*").each do |file| system "cp", "-r", file, share/"brixtonline" end end diff --git a/Formula/font-broke.rb b/Formula/font-broke.rb index b397c62..1994807 100644 --- a/Formula/font-broke.rb +++ b/Formula/font-broke.rb @@ -19,23 +19,23 @@ class FontBroke < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-broke/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-broke/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-broke/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-broke/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-broke/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-broke/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"broke").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-broke/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-broke/other_files/*").each do |file| system "cp", "-r", file, share/"broke" end end diff --git a/Formula/font-buffy.rb b/Formula/font-buffy.rb index c01bfc2..35b9400 100644 --- a/Formula/font-buffy.rb +++ b/Formula/font-buffy.rb @@ -19,23 +19,23 @@ class FontBuffy < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-buffy/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-buffy/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-buffy/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-buffy/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-buffy/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-buffy/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"buffy").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-buffy/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-buffy/other_files/*").each do |file| system "cp", "-r", file, share/"buffy" end end diff --git a/Formula/font-cat-outline.rb b/Formula/font-cat-outline.rb index df3cfb2..8edd1a3 100644 --- a/Formula/font-cat-outline.rb +++ b/Formula/font-cat-outline.rb @@ -19,23 +19,23 @@ class FontCatOutline < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-cat-outline/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-cat-outline/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-cat-outline/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-cat-outline/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-cat-outline/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-cat-outline/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"cat-outline").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-cat-outline/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-cat-outline/other_files/*").each do |file| system "cp", "-r", file, share/"cat-outline" end end diff --git a/Formula/font-cheeky-rabbit.rb b/Formula/font-cheeky-rabbit.rb index 2ed7e2a..4ab5c50 100644 --- a/Formula/font-cheeky-rabbit.rb +++ b/Formula/font-cheeky-rabbit.rb @@ -19,23 +19,23 @@ class FontCheekyRabbit < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-cheeky-rabbit/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-cheeky-rabbit/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-cheeky-rabbit/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-cheeky-rabbit/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-cheeky-rabbit/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-cheeky-rabbit/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"cheeky-rabbit").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-cheeky-rabbit/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-cheeky-rabbit/other_files/*").each do |file| system "cp", "-r", file, share/"cheeky-rabbit" end end diff --git a/Formula/font-chido.rb b/Formula/font-chido.rb index 8efb109..4ec3bb8 100644 --- a/Formula/font-chido.rb +++ b/Formula/font-chido.rb @@ -19,23 +19,23 @@ class FontChido < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-chido/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-chido/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-chido/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-chido/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-chido/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-chido/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"chido").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-chido/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-chido/other_files/*").each do |file| system "cp", "-r", file, share/"chido" end end diff --git a/Formula/font-christmas-picture.rb b/Formula/font-christmas-picture.rb index e96dc3d..0acab2c 100644 --- a/Formula/font-christmas-picture.rb +++ b/Formula/font-christmas-picture.rb @@ -19,23 +19,23 @@ class FontChristmasPicture < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-christmas-picture/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-christmas-picture/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-christmas-picture/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-christmas-picture/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-christmas-picture/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-christmas-picture/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"christmas-picture").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-christmas-picture/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-christmas-picture/other_files/*").each do |file| system "cp", "-r", file, share/"christmas-picture" end end diff --git a/Formula/font-chrone.rb b/Formula/font-chrone.rb index e1cc8bb..bf95a9a 100644 --- a/Formula/font-chrone.rb +++ b/Formula/font-chrone.rb @@ -19,23 +19,23 @@ class FontChrone < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-chrone/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-chrone/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-chrone/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-chrone/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-chrone/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-chrone/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"chrone").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-chrone/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-chrone/other_files/*").each do |file| system "cp", "-r", file, share/"chrone" end end diff --git a/Formula/font-clancy-experience.rb b/Formula/font-clancy-experience.rb index 264a379..a358c8a 100644 --- a/Formula/font-clancy-experience.rb +++ b/Formula/font-clancy-experience.rb @@ -19,23 +19,23 @@ class FontClancyExperience < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-clancy-experience/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-clancy-experience/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-clancy-experience/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-clancy-experience/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-clancy-experience/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-clancy-experience/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"clancy-experience").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-clancy-experience/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-clancy-experience/other_files/*").each do |file| system "cp", "-r", file, share/"clancy-experience" end end diff --git a/Formula/font-clancy.rb b/Formula/font-clancy.rb index f5e6490..8720965 100644 --- a/Formula/font-clancy.rb +++ b/Formula/font-clancy.rb @@ -19,23 +19,23 @@ class FontClancy < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-clancy/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-clancy/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-clancy/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-clancy/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-clancy/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-clancy/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"clancy").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-clancy/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-clancy/other_files/*").each do |file| system "cp", "-r", file, share/"clancy" end end diff --git a/Formula/font-code.rb b/Formula/font-code.rb index e4473d7..7281ecb 100644 --- a/Formula/font-code.rb +++ b/Formula/font-code.rb @@ -19,23 +19,23 @@ class FontCode < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-code/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-code/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-code/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-code/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-code/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-code/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"code").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-code/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-code/other_files/*").each do |file| system "cp", "-r", file, share/"code" end end diff --git a/Formula/font-coffina.rb b/Formula/font-coffina.rb index 634d8c9..b796d41 100644 --- a/Formula/font-coffina.rb +++ b/Formula/font-coffina.rb @@ -19,23 +19,23 @@ class FontCoffina < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-coffina/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-coffina/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-coffina/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-coffina/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-coffina/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-coffina/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"coffina").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-coffina/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-coffina/other_files/*").each do |file| system "cp", "-r", file, share/"coffina" end end diff --git a/Formula/font-copixel-font-1764372079-0.rb b/Formula/font-copixel-font-1764372079-0.rb index cc7b96a..0a3759f 100644 --- a/Formula/font-copixel-font-1764372079-0.rb +++ b/Formula/font-copixel-font-1764372079-0.rb @@ -19,23 +19,23 @@ class FontCopixelFont17643720790 < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-copixel-font-1764372079-0/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-copixel-font-1764372079-0/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-copixel-font-1764372079-0/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-copixel-font-1764372079-0/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-copixel-font-1764372079-0/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-copixel-font-1764372079-0/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"copixel-font-1764372079-0").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-copixel-font-1764372079-0/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-copixel-font-1764372079-0/other_files/*").each do |file| system "cp", "-r", file, share/"copixel-font-1764372079-0" end end diff --git a/Formula/font-creamy-dreams.rb b/Formula/font-creamy-dreams.rb index c9e1bf9..af0aeb7 100644 --- a/Formula/font-creamy-dreams.rb +++ b/Formula/font-creamy-dreams.rb @@ -19,23 +19,23 @@ class FontCreamyDreams < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-creamy-dreams/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-creamy-dreams/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-creamy-dreams/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-creamy-dreams/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-creamy-dreams/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-creamy-dreams/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"creamy-dreams").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-creamy-dreams/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-creamy-dreams/other_files/*").each do |file| system "cp", "-r", file, share/"creamy-dreams" end end diff --git a/Formula/font-cucurucho.rb b/Formula/font-cucurucho.rb index ae1d83c..e4e73cf 100644 --- a/Formula/font-cucurucho.rb +++ b/Formula/font-cucurucho.rb @@ -19,23 +19,23 @@ class FontCucurucho < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-cucurucho/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-cucurucho/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-cucurucho/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-cucurucho/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-cucurucho/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-cucurucho/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"cucurucho").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-cucurucho/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-cucurucho/other_files/*").each do |file| system "cp", "-r", file, share/"cucurucho" end end diff --git a/Formula/font-damn.rb b/Formula/font-damn.rb index 49600f6..2f79bbe 100644 --- a/Formula/font-damn.rb +++ b/Formula/font-damn.rb @@ -19,23 +19,23 @@ class FontDamn < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-damn/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-damn/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-damn/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-damn/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-damn/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-damn/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"damn").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-damn/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-damn/other_files/*").each do |file| system "cp", "-r", file, share/"damn" end end diff --git a/Formula/font-dance-blues.rb b/Formula/font-dance-blues.rb index f5d89f8..ab81c69 100644 --- a/Formula/font-dance-blues.rb +++ b/Formula/font-dance-blues.rb @@ -19,23 +19,23 @@ class FontDanceBlues < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-dance-blues/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-dance-blues/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-dance-blues/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-dance-blues/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-dance-blues/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-dance-blues/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"dance-blues").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-dance-blues/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-dance-blues/other_files/*").each do |file| system "cp", "-r", file, share/"dance-blues" end end diff --git a/Formula/font-depixel.rb b/Formula/font-depixel.rb index abe8a20..5ccf180 100644 --- a/Formula/font-depixel.rb +++ b/Formula/font-depixel.rb @@ -19,23 +19,23 @@ class FontDepixel < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-depixel/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-depixel/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-depixel/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-depixel/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-depixel/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-depixel/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"depixel").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-depixel/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-depixel/other_files/*").each do |file| system "cp", "-r", file, share/"depixel" end end diff --git a/Formula/font-depok-cubism.rb b/Formula/font-depok-cubism.rb index 0259680..7a96333 100644 --- a/Formula/font-depok-cubism.rb +++ b/Formula/font-depok-cubism.rb @@ -19,23 +19,23 @@ class FontDepokCubism < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-depok-cubism/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-depok-cubism/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-depok-cubism/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-depok-cubism/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-depok-cubism/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-depok-cubism/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"depok-cubism").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-depok-cubism/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-depok-cubism/other_files/*").each do |file| system "cp", "-r", file, share/"depok-cubism" end end diff --git a/Formula/font-devils-cut.rb b/Formula/font-devils-cut.rb index 3512872..3f267ce 100644 --- a/Formula/font-devils-cut.rb +++ b/Formula/font-devils-cut.rb @@ -19,23 +19,23 @@ class FontDevilsCut < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-devils-cut/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-devils-cut/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-devils-cut/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-devils-cut/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-devils-cut/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-devils-cut/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"devils-cut").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-devils-cut/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-devils-cut/other_files/*").each do |file| system "cp", "-r", file, share/"devils-cut" end end diff --git a/Formula/font-dirty-clouds.rb b/Formula/font-dirty-clouds.rb index d371d2c..246333b 100644 --- a/Formula/font-dirty-clouds.rb +++ b/Formula/font-dirty-clouds.rb @@ -19,23 +19,23 @@ class FontDirtyClouds < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-dirty-clouds/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-dirty-clouds/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-dirty-clouds/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-dirty-clouds/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-dirty-clouds/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-dirty-clouds/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"dirty-clouds").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-dirty-clouds/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-dirty-clouds/other_files/*").each do |file| system "cp", "-r", file, share/"dirty-clouds" end end diff --git a/Formula/font-district.rb b/Formula/font-district.rb index 5e4aab7..61a5c29 100644 --- a/Formula/font-district.rb +++ b/Formula/font-district.rb @@ -19,23 +19,23 @@ class FontDistrict < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-district/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-district/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-district/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-district/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-district/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-district/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"district").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-district/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-district/other_files/*").each do |file| system "cp", "-r", file, share/"district" end end diff --git a/Formula/font-dk-frozen-memory.rb b/Formula/font-dk-frozen-memory.rb index b514a61..df55135 100644 --- a/Formula/font-dk-frozen-memory.rb +++ b/Formula/font-dk-frozen-memory.rb @@ -19,23 +19,23 @@ class FontDkFrozenMemory < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-dk-frozen-memory/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-dk-frozen-memory/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-dk-frozen-memory/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-dk-frozen-memory/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-dk-frozen-memory/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-dk-frozen-memory/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"dk-frozen-memory").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-dk-frozen-memory/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-dk-frozen-memory/other_files/*").each do |file| system "cp", "-r", file, share/"dk-frozen-memory" end end diff --git a/Formula/font-domaine-display.rb b/Formula/font-domaine-display.rb index 0d3ebf7..1854f98 100644 --- a/Formula/font-domaine-display.rb +++ b/Formula/font-domaine-display.rb @@ -19,23 +19,23 @@ class FontDomaineDisplay < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-domaine-display/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-domaine-display/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-domaine-display/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-domaine-display/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-domaine-display/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-domaine-display/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"domaine-display").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-domaine-display/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-domaine-display/other_files/*").each do |file| system "cp", "-r", file, share/"domaine-display" end end diff --git a/Formula/font-dtmilagros.rb b/Formula/font-dtmilagros.rb index 2283d99..012f9c7 100644 --- a/Formula/font-dtmilagros.rb +++ b/Formula/font-dtmilagros.rb @@ -19,23 +19,23 @@ class FontDtmilagros < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-dtmilagros/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-dtmilagros/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-dtmilagros/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-dtmilagros/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-dtmilagros/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-dtmilagros/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"dtmilagros").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-dtmilagros/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-dtmilagros/other_files/*").each do |file| system "cp", "-r", file, share/"dtmilagros" end end diff --git a/Formula/font-ep-boxi.rb b/Formula/font-ep-boxi.rb index 9da55cc..de9b7a0 100644 --- a/Formula/font-ep-boxi.rb +++ b/Formula/font-ep-boxi.rb @@ -19,23 +19,23 @@ class FontEpBoxi < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-ep-boxi/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-ep-boxi/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-ep-boxi/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-ep-boxi/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-ep-boxi/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-ep-boxi/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"ep-boxi").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-ep-boxi/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-ep-boxi/other_files/*").each do |file| system "cp", "-r", file, share/"ep-boxi" end end diff --git a/Formula/font-f37-stout.rb b/Formula/font-f37-stout.rb index 64f679c..0d08b8c 100644 --- a/Formula/font-f37-stout.rb +++ b/Formula/font-f37-stout.rb @@ -19,23 +19,23 @@ class FontF37Stout < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-f37-stout/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-f37-stout/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-f37-stout/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-f37-stout/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-f37-stout/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-f37-stout/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"f37-stout").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-f37-stout/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-f37-stout/other_files/*").each do |file| system "cp", "-r", file, share/"f37-stout" end end diff --git a/Formula/font-flyover.rb b/Formula/font-flyover.rb index c88312f..53939d6 100644 --- a/Formula/font-flyover.rb +++ b/Formula/font-flyover.rb @@ -19,23 +19,23 @@ class FontFlyover < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-flyover/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-flyover/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-flyover/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-flyover/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-flyover/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-flyover/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"flyover").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-flyover/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-flyover/other_files/*").each do |file| system "cp", "-r", file, share/"flyover" end end diff --git a/Formula/font-fresh-christmas-font-1764370888-0.rb b/Formula/font-fresh-christmas-font-1764370888-0.rb index 1fd34d2..1db3a77 100644 --- a/Formula/font-fresh-christmas-font-1764370888-0.rb +++ b/Formula/font-fresh-christmas-font-1764370888-0.rb @@ -19,23 +19,23 @@ class FontFreshChristmasFont17643708880 < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-fresh-christmas-font-1764370888-0/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-fresh-christmas-font-1764370888-0/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-fresh-christmas-font-1764370888-0/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-fresh-christmas-font-1764370888-0/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-fresh-christmas-font-1764370888-0/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-fresh-christmas-font-1764370888-0/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"fresh-christmas-font-1764370888-0").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-fresh-christmas-font-1764370888-0/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-fresh-christmas-font-1764370888-0/other_files/*").each do |file| system "cp", "-r", file, share/"fresh-christmas-font-1764370888-0" end end diff --git a/Formula/font-friem.rb b/Formula/font-friem.rb index d187b00..fe18fa3 100644 --- a/Formula/font-friem.rb +++ b/Formula/font-friem.rb @@ -19,23 +19,23 @@ class FontFriem < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-friem/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-friem/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-friem/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-friem/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-friem/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-friem/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"friem").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-friem/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-friem/other_files/*").each do |file| system "cp", "-r", file, share/"friem" end end diff --git a/Formula/font-funky-round.rb b/Formula/font-funky-round.rb index 17462b7..943ff13 100644 --- a/Formula/font-funky-round.rb +++ b/Formula/font-funky-round.rb @@ -19,23 +19,23 @@ class FontFunkyRound < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-funky-round/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-funky-round/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-funky-round/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-funky-round/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-funky-round/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-funky-round/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"funky-round").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-funky-round/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-funky-round/other_files/*").each do |file| system "cp", "-r", file, share/"funky-round" end end diff --git a/Formula/font-futura-1986.rb b/Formula/font-futura-1986.rb index a5268a1..573063e 100644 --- a/Formula/font-futura-1986.rb +++ b/Formula/font-futura-1986.rb @@ -19,23 +19,23 @@ class FontFutura1986 < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-futura-1986/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-futura-1986/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-futura-1986/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-futura-1986/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-futura-1986/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-futura-1986/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"futura-1986").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-futura-1986/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-futura-1986/other_files/*").each do |file| system "cp", "-r", file, share/"futura-1986" end end diff --git a/Formula/font-galaxia.rb b/Formula/font-galaxia.rb index 003f198..58f63f4 100644 --- a/Formula/font-galaxia.rb +++ b/Formula/font-galaxia.rb @@ -19,23 +19,23 @@ class FontGalaxia < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-galaxia/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-galaxia/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-galaxia/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-galaxia/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-galaxia/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-galaxia/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"galaxia").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-galaxia/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-galaxia/other_files/*").each do |file| system "cp", "-r", file, share/"galaxia" end end diff --git a/Formula/font-gilbert.rb b/Formula/font-gilbert.rb index 32a8425..ab936b7 100644 --- a/Formula/font-gilbert.rb +++ b/Formula/font-gilbert.rb @@ -19,23 +19,23 @@ class FontGilbert < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-gilbert/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-gilbert/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-gilbert/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-gilbert/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-gilbert/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-gilbert/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"gilbert").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-gilbert/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-gilbert/other_files/*").each do |file| system "cp", "-r", file, share/"gilbert" end end diff --git a/Formula/font-graham_hand.rb b/Formula/font-graham_hand.rb index c5f37f6..52373f9 100644 --- a/Formula/font-graham_hand.rb +++ b/Formula/font-graham_hand.rb @@ -19,23 +19,23 @@ class FontGrahamHand < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-graham_hand/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-graham_hand/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-graham_hand/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-graham_hand/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-graham_hand/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-graham_hand/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"graham_hand").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-graham_hand/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-graham_hand/other_files/*").each do |file| system "cp", "-r", file, share/"graham_hand" end end diff --git a/Formula/font-gyanko.rb b/Formula/font-gyanko.rb index 9f9d2d5..1a58d6e 100644 --- a/Formula/font-gyanko.rb +++ b/Formula/font-gyanko.rb @@ -19,23 +19,23 @@ class FontGyanko < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-gyanko/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-gyanko/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-gyanko/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-gyanko/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-gyanko/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-gyanko/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"gyanko").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-gyanko/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-gyanko/other_files/*").each do |file| system "cp", "-r", file, share/"gyanko" end end diff --git a/Formula/font-hectra.rb b/Formula/font-hectra.rb index 0c3b19f..f9146b3 100644 --- a/Formula/font-hectra.rb +++ b/Formula/font-hectra.rb @@ -19,23 +19,23 @@ class FontHectra < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-hectra/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-hectra/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-hectra/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-hectra/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-hectra/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-hectra/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"hectra").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-hectra/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-hectra/other_files/*").each do |file| system "cp", "-r", file, share/"hectra" end end diff --git a/Formula/font-hello-headline.rb b/Formula/font-hello-headline.rb index ce58ad8..2cc2680 100644 --- a/Formula/font-hello-headline.rb +++ b/Formula/font-hello-headline.rb @@ -19,23 +19,23 @@ class FontHelloHeadline < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-hello-headline/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-hello-headline/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-hello-headline/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-hello-headline/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-hello-headline/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-hello-headline/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"hello-headline").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-hello-headline/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-hello-headline/other_files/*").each do |file| system "cp", "-r", file, share/"hello-headline" end end diff --git a/Formula/font-horseland.rb b/Formula/font-horseland.rb index aed2b5a..e672a2f 100644 --- a/Formula/font-horseland.rb +++ b/Formula/font-horseland.rb @@ -19,23 +19,23 @@ class FontHorseland < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-horseland/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-horseland/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-horseland/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-horseland/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-horseland/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-horseland/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"horseland").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-horseland/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-horseland/other_files/*").each do |file| system "cp", "-r", file, share/"horseland" end end diff --git a/Formula/font-idgrotesk.rb b/Formula/font-idgrotesk.rb index 440c86d..7d37148 100644 --- a/Formula/font-idgrotesk.rb +++ b/Formula/font-idgrotesk.rb @@ -19,23 +19,23 @@ class FontIdgrotesk < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-idgrotesk/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-idgrotesk/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-idgrotesk/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-idgrotesk/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-idgrotesk/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-idgrotesk/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"idgrotesk").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-idgrotesk/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-idgrotesk/other_files/*").each do |file| system "cp", "-r", file, share/"idgrotesk" end end diff --git a/Formula/font-introvert-font-2-1764371655-0.rb b/Formula/font-introvert-font-2-1764371655-0.rb index 75cab3f..25603e1 100644 --- a/Formula/font-introvert-font-2-1764371655-0.rb +++ b/Formula/font-introvert-font-2-1764371655-0.rb @@ -19,23 +19,23 @@ class FontIntrovertFont217643716550 < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-introvert-font-2-1764371655-0/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-introvert-font-2-1764371655-0/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-introvert-font-2-1764371655-0/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-introvert-font-2-1764371655-0/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-introvert-font-2-1764371655-0/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-introvert-font-2-1764371655-0/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"introvert-font-2-1764371655-0").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-introvert-font-2-1764371655-0/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-introvert-font-2-1764371655-0/other_files/*").each do |file| system "cp", "-r", file, share/"introvert-font-2-1764371655-0" end end diff --git a/Formula/font-jimmy-sans.rb b/Formula/font-jimmy-sans.rb index c8bc399..81b2c85 100644 --- a/Formula/font-jimmy-sans.rb +++ b/Formula/font-jimmy-sans.rb @@ -19,23 +19,23 @@ class FontJimmySans < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-jimmy-sans/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-jimmy-sans/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-jimmy-sans/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-jimmy-sans/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-jimmy-sans/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-jimmy-sans/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"jimmy-sans").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-jimmy-sans/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-jimmy-sans/other_files/*").each do |file| system "cp", "-r", file, share/"jimmy-sans" end end diff --git a/Formula/font-joc.rb b/Formula/font-joc.rb index 898c03c..e5d7f99 100644 --- a/Formula/font-joc.rb +++ b/Formula/font-joc.rb @@ -19,23 +19,23 @@ class FontJoc < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-joc/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-joc/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-joc/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-joc/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-joc/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-joc/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"joc").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-joc/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-joc/other_files/*").each do |file| system "cp", "-r", file, share/"joc" end end diff --git a/Formula/font-kompeni.rb b/Formula/font-kompeni.rb index fc609d0..2498521 100644 --- a/Formula/font-kompeni.rb +++ b/Formula/font-kompeni.rb @@ -19,23 +19,23 @@ class FontKompeni < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-kompeni/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-kompeni/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-kompeni/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-kompeni/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-kompeni/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-kompeni/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"kompeni").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-kompeni/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-kompeni/other_files/*").each do |file| system "cp", "-r", file, share/"kompeni" end end diff --git a/Formula/font-lab-grotesk.rb b/Formula/font-lab-grotesk.rb index e661f15..ee5e558 100644 --- a/Formula/font-lab-grotesk.rb +++ b/Formula/font-lab-grotesk.rb @@ -19,23 +19,23 @@ class FontLabGrotesk < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-lab-grotesk/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-lab-grotesk/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-lab-grotesk/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-lab-grotesk/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-lab-grotesk/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-lab-grotesk/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"lab-grotesk").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-lab-grotesk/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-lab-grotesk/other_files/*").each do |file| system "cp", "-r", file, share/"lab-grotesk" end end diff --git a/Formula/font-lance-tomchalky.rb b/Formula/font-lance-tomchalky.rb index 8ffb446..b394c32 100644 --- a/Formula/font-lance-tomchalky.rb +++ b/Formula/font-lance-tomchalky.rb @@ -19,23 +19,23 @@ class FontLanceTomchalky < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-lance-tomchalky/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-lance-tomchalky/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-lance-tomchalky/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-lance-tomchalky/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-lance-tomchalky/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-lance-tomchalky/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"lance-tomchalky").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-lance-tomchalky/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-lance-tomchalky/other_files/*").each do |file| system "cp", "-r", file, share/"lance-tomchalky" end end diff --git a/Formula/font-latcha.rb b/Formula/font-latcha.rb index 3f141c9..e698c2d 100644 --- a/Formula/font-latcha.rb +++ b/Formula/font-latcha.rb @@ -19,23 +19,23 @@ class FontLatcha < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-latcha/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-latcha/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-latcha/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-latcha/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-latcha/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-latcha/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"latcha").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-latcha/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-latcha/other_files/*").each do |file| system "cp", "-r", file, share/"latcha" end end diff --git a/Formula/font-lazare-grotesk-font-family-1764370398-0.rb b/Formula/font-lazare-grotesk-font-family-1764370398-0.rb index ba1535f..318cda3 100644 --- a/Formula/font-lazare-grotesk-font-family-1764370398-0.rb +++ b/Formula/font-lazare-grotesk-font-family-1764370398-0.rb @@ -19,23 +19,23 @@ class FontLazareGroteskFontFamily17643703980 < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-lazare-grotesk-font-family-1764370398-0/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-lazare-grotesk-font-family-1764370398-0/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"lazare-grotesk-font-family-1764370398-0").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-lazare-grotesk-font-family-1764370398-0/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/other_files/*").each do |file| system "cp", "-r", file, share/"lazare-grotesk-font-family-1764370398-0" end end diff --git a/Formula/font-lexa.rb b/Formula/font-lexa.rb index abf81d9..22c72f9 100644 --- a/Formula/font-lexa.rb +++ b/Formula/font-lexa.rb @@ -19,23 +19,23 @@ class FontLexa < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-lexa/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-lexa/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-lexa/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-lexa/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-lexa/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-lexa/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"lexa").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-lexa/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-lexa/other_files/*").each do |file| system "cp", "-r", file, share/"lexa" end end diff --git a/Formula/font-made-carving.rb b/Formula/font-made-carving.rb index 139c65b..d521ec2 100644 --- a/Formula/font-made-carving.rb +++ b/Formula/font-made-carving.rb @@ -19,23 +19,23 @@ class FontMadeCarving < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-made-carving/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-made-carving/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-made-carving/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-made-carving/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-made-carving/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-made-carving/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"made-carving").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-made-carving/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-made-carving/other_files/*").each do |file| system "cp", "-r", file, share/"made-carving" end end diff --git a/Formula/font-made-infinity.rb b/Formula/font-made-infinity.rb index ecc70c0..a63fa97 100644 --- a/Formula/font-made-infinity.rb +++ b/Formula/font-made-infinity.rb @@ -19,23 +19,23 @@ class FontMadeInfinity < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-made-infinity/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-made-infinity/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-made-infinity/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-made-infinity/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-made-infinity/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-made-infinity/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"made-infinity").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-made-infinity/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-made-infinity/other_files/*").each do |file| system "cp", "-r", file, share/"made-infinity" end end diff --git a/Formula/font-magic-painted.rb b/Formula/font-magic-painted.rb index 301df17..9b8c668 100644 --- a/Formula/font-magic-painted.rb +++ b/Formula/font-magic-painted.rb @@ -19,23 +19,23 @@ class FontMagicPainted < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-magic-painted/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-magic-painted/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-magic-painted/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-magic-painted/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-magic-painted/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-magic-painted/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"magic-painted").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-magic-painted/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-magic-painted/other_files/*").each do |file| system "cp", "-r", file, share/"magic-painted" end end diff --git a/Formula/font-magnode.rb b/Formula/font-magnode.rb index 5ccc06a..144a1ac 100644 --- a/Formula/font-magnode.rb +++ b/Formula/font-magnode.rb @@ -19,23 +19,23 @@ class FontMagnode < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-magnode/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-magnode/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-magnode/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-magnode/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-magnode/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-magnode/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"magnode").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-magnode/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-magnode/other_files/*").each do |file| system "cp", "-r", file, share/"magnode" end end diff --git a/Formula/font-marker_notes.rb b/Formula/font-marker_notes.rb index 978bc50..4ff92f2 100644 --- a/Formula/font-marker_notes.rb +++ b/Formula/font-marker_notes.rb @@ -19,23 +19,23 @@ class FontMarkerNotes < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-marker_notes/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-marker_notes/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-marker_notes/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-marker_notes/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-marker_notes/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-marker_notes/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"marker_notes").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-marker_notes/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-marker_notes/other_files/*").each do |file| system "cp", "-r", file, share/"marker_notes" end end diff --git a/Formula/font-marvelo.rb b/Formula/font-marvelo.rb index 2d6b73c..8576ff5 100644 --- a/Formula/font-marvelo.rb +++ b/Formula/font-marvelo.rb @@ -19,23 +19,23 @@ class FontMarvelo < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-marvelo/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-marvelo/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-marvelo/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-marvelo/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-marvelo/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-marvelo/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"marvelo").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-marvelo/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-marvelo/other_files/*").each do |file| system "cp", "-r", file, share/"marvelo" end end diff --git a/Formula/font-mba-slice-mono.rb b/Formula/font-mba-slice-mono.rb index ed612f1..3496e3b 100644 --- a/Formula/font-mba-slice-mono.rb +++ b/Formula/font-mba-slice-mono.rb @@ -19,23 +19,23 @@ class FontMbaSliceMono < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-mba-slice-mono/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-mba-slice-mono/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-mba-slice-mono/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-mba-slice-mono/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-mba-slice-mono/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-mba-slice-mono/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"mba-slice-mono").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-mba-slice-mono/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-mba-slice-mono/other_files/*").each do |file| system "cp", "-r", file, share/"mba-slice-mono" end end diff --git a/Formula/font-miracode.rb b/Formula/font-miracode.rb index 0870bda..b578229 100644 --- a/Formula/font-miracode.rb +++ b/Formula/font-miracode.rb @@ -19,23 +19,23 @@ class FontMiracode < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-miracode/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-miracode/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-miracode/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-miracode/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-miracode/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-miracode/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"miracode").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-miracode/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-miracode/other_files/*").each do |file| system "cp", "-r", file, share/"miracode" end end diff --git a/Formula/font-moon-walk.rb b/Formula/font-moon-walk.rb index 9324703..d1457f3 100644 --- a/Formula/font-moon-walk.rb +++ b/Formula/font-moon-walk.rb @@ -19,23 +19,23 @@ class FontMoonWalk < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-moon-walk/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-moon-walk/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-moon-walk/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-moon-walk/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-moon-walk/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-moon-walk/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"moon-walk").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-moon-walk/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-moon-walk/other_files/*").each do |file| system "cp", "-r", file, share/"moon-walk" end end diff --git a/Formula/font-morgon.rb b/Formula/font-morgon.rb index 6e257f9..ce89e17 100644 --- a/Formula/font-morgon.rb +++ b/Formula/font-morgon.rb @@ -19,23 +19,23 @@ class FontMorgon < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-morgon/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-morgon/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-morgon/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-morgon/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-morgon/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-morgon/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"morgon").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-morgon/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-morgon/other_files/*").each do |file| system "cp", "-r", file, share/"morgon" end end diff --git a/Formula/font-nafasmanual.rb b/Formula/font-nafasmanual.rb index cec4e41..bcbb3c7 100644 --- a/Formula/font-nafasmanual.rb +++ b/Formula/font-nafasmanual.rb @@ -19,23 +19,23 @@ class FontNafasmanual < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-nafasmanual/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-nafasmanual/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-nafasmanual/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-nafasmanual/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-nafasmanual/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-nafasmanual/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"nafasmanual").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-nafasmanual/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-nafasmanual/other_files/*").each do |file| system "cp", "-r", file, share/"nafasmanual" end end diff --git a/Formula/font-neopixel-font-1764372129-0.rb b/Formula/font-neopixel-font-1764372129-0.rb index 407a228..a523193 100644 --- a/Formula/font-neopixel-font-1764372129-0.rb +++ b/Formula/font-neopixel-font-1764372129-0.rb @@ -19,23 +19,23 @@ class FontNeopixelFont17643721290 < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-neopixel-font-1764372129-0/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-neopixel-font-1764372129-0/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-neopixel-font-1764372129-0/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-neopixel-font-1764372129-0/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-neopixel-font-1764372129-0/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-neopixel-font-1764372129-0/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"neopixel-font-1764372129-0").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-neopixel-font-1764372129-0/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-neopixel-font-1764372129-0/other_files/*").each do |file| system "cp", "-r", file, share/"neopixel-font-1764372129-0" end end diff --git a/Formula/font-new-kansas-black-wisabo.rb b/Formula/font-new-kansas-black-wisabo.rb index 7bdc7ae..0c5ecf4 100644 --- a/Formula/font-new-kansas-black-wisabo.rb +++ b/Formula/font-new-kansas-black-wisabo.rb @@ -19,23 +19,23 @@ class FontNewKansasBlackWisabo < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-new-kansas-black-wisabo/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-new-kansas-black-wisabo/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-new-kansas-black-wisabo/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-new-kansas-black-wisabo/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-new-kansas-black-wisabo/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-new-kansas-black-wisabo/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"new-kansas-black-wisabo").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-new-kansas-black-wisabo/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-new-kansas-black-wisabo/other_files/*").each do |file| system "cp", "-r", file, share/"new-kansas-black-wisabo" end end diff --git a/Formula/font-nugia-vintage.rb b/Formula/font-nugia-vintage.rb index 9530b59..2307d0e 100644 --- a/Formula/font-nugia-vintage.rb +++ b/Formula/font-nugia-vintage.rb @@ -19,23 +19,23 @@ class FontNugiaVintage < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-nugia-vintage/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-nugia-vintage/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-nugia-vintage/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-nugia-vintage/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-nugia-vintage/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-nugia-vintage/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"nugia-vintage").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-nugia-vintage/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-nugia-vintage/other_files/*").each do |file| system "cp", "-r", file, share/"nugia-vintage" end end diff --git a/Formula/font-overland.rb b/Formula/font-overland.rb index 823b9d6..8199545 100644 --- a/Formula/font-overland.rb +++ b/Formula/font-overland.rb @@ -19,23 +19,23 @@ class FontOverland < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-overland/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-overland/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-overland/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-overland/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-overland/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-overland/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"overland").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-overland/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-overland/other_files/*").each do |file| system "cp", "-r", file, share/"overland" end end diff --git a/Formula/font-parasite-game.rb b/Formula/font-parasite-game.rb index ddf1def..40710b5 100644 --- a/Formula/font-parasite-game.rb +++ b/Formula/font-parasite-game.rb @@ -19,23 +19,23 @@ class FontParasiteGame < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-parasite-game/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-parasite-game/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-parasite-game/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-parasite-game/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-parasite-game/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-parasite-game/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"parasite-game").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-parasite-game/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-parasite-game/other_files/*").each do |file| system "cp", "-r", file, share/"parasite-game" end end diff --git a/Formula/font-patsy-sans-grotesque.rb b/Formula/font-patsy-sans-grotesque.rb index 769da26..4214245 100644 --- a/Formula/font-patsy-sans-grotesque.rb +++ b/Formula/font-patsy-sans-grotesque.rb @@ -19,23 +19,23 @@ class FontPatsySansGrotesque < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-patsy-sans-grotesque/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-patsy-sans-grotesque/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-patsy-sans-grotesque/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-patsy-sans-grotesque/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-patsy-sans-grotesque/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-patsy-sans-grotesque/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"patsy-sans-grotesque").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-patsy-sans-grotesque/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-patsy-sans-grotesque/other_files/*").each do |file| system "cp", "-r", file, share/"patsy-sans-grotesque" end end diff --git a/Formula/font-pixel-crash-font-1764372071-0.rb b/Formula/font-pixel-crash-font-1764372071-0.rb index 0a0ca6f..1822cfd 100644 --- a/Formula/font-pixel-crash-font-1764372071-0.rb +++ b/Formula/font-pixel-crash-font-1764372071-0.rb @@ -19,23 +19,23 @@ class FontPixelCrashFont17643720710 < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-pixel-crash-font-1764372071-0/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-pixel-crash-font-1764372071-0/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-pixel-crash-font-1764372071-0/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-pixel-crash-font-1764372071-0/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-pixel-crash-font-1764372071-0/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-pixel-crash-font-1764372071-0/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"pixel-crash-font-1764372071-0").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-pixel-crash-font-1764372071-0/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-pixel-crash-font-1764372071-0/other_files/*").each do |file| system "cp", "-r", file, share/"pixel-crash-font-1764372071-0" end end diff --git a/Formula/font-pixel-gamer-font-1764372239-0.rb b/Formula/font-pixel-gamer-font-1764372239-0.rb index 49c07c8..7d135d4 100644 --- a/Formula/font-pixel-gamer-font-1764372239-0.rb +++ b/Formula/font-pixel-gamer-font-1764372239-0.rb @@ -19,23 +19,23 @@ class FontPixelGamerFont17643722390 < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-pixel-gamer-font-1764372239-0/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-pixel-gamer-font-1764372239-0/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-pixel-gamer-font-1764372239-0/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-pixel-gamer-font-1764372239-0/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-pixel-gamer-font-1764372239-0/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-pixel-gamer-font-1764372239-0/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"pixel-gamer-font-1764372239-0").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-pixel-gamer-font-1764372239-0/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-pixel-gamer-font-1764372239-0/other_files/*").each do |file| system "cp", "-r", file, share/"pixel-gamer-font-1764372239-0" end end diff --git a/Formula/font-pixel-grid-font-family-1764371982-0.rb b/Formula/font-pixel-grid-font-family-1764371982-0.rb index e9f65ed..4d73a5a 100644 --- a/Formula/font-pixel-grid-font-family-1764371982-0.rb +++ b/Formula/font-pixel-grid-font-family-1764371982-0.rb @@ -19,23 +19,23 @@ class FontPixelGridFontFamily17643719820 < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-pixel-grid-font-family-1764371982-0/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-pixel-grid-font-family-1764371982-0/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-pixel-grid-font-family-1764371982-0/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"pixel-grid-font-family-1764371982-0").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-pixel-grid-font-family-1764371982-0/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-pixel-grid-font-family-1764371982-0/other_files/*").each do |file| system "cp", "-r", file, share/"pixel-grid-font-family-1764371982-0" end end diff --git a/Formula/font-pixelon.rb b/Formula/font-pixelon.rb index e6d56d2..0590608 100644 --- a/Formula/font-pixelon.rb +++ b/Formula/font-pixelon.rb @@ -19,23 +19,23 @@ class FontPixelon < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-pixelon/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-pixelon/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-pixelon/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-pixelon/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-pixelon/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-pixelon/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"pixelon").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-pixelon/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-pixelon/other_files/*").each do |file| system "cp", "-r", file, share/"pixelon" end end diff --git a/Formula/font-plaztma.rb b/Formula/font-plaztma.rb index 9eb1f17..b271f1c 100644 --- a/Formula/font-plaztma.rb +++ b/Formula/font-plaztma.rb @@ -19,23 +19,23 @@ class FontPlaztma < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-plaztma/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-plaztma/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-plaztma/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-plaztma/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-plaztma/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-plaztma/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"plaztma").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-plaztma/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-plaztma/other_files/*").each do |file| system "cp", "-r", file, share/"plaztma" end end diff --git a/Formula/font-plebis.rb b/Formula/font-plebis.rb index 1a9fd80..05a6317 100644 --- a/Formula/font-plebis.rb +++ b/Formula/font-plebis.rb @@ -19,23 +19,23 @@ class FontPlebis < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-plebis/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-plebis/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-plebis/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-plebis/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-plebis/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-plebis/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"plebis").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-plebis/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-plebis/other_files/*").each do |file| system "cp", "-r", file, share/"plebis" end end diff --git a/Formula/font-project-space.rb b/Formula/font-project-space.rb index a2189e1..3dcdc37 100644 --- a/Formula/font-project-space.rb +++ b/Formula/font-project-space.rb @@ -19,23 +19,23 @@ class FontProjectSpace < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-project-space/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-project-space/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-project-space/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-project-space/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-project-space/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-project-space/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"project-space").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-project-space/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-project-space/other_files/*").each do |file| system "cp", "-r", file, share/"project-space" end end diff --git a/Formula/font-provisions.rb b/Formula/font-provisions.rb index 85872d3..3406409 100644 --- a/Formula/font-provisions.rb +++ b/Formula/font-provisions.rb @@ -19,23 +19,23 @@ class FontProvisions < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-provisions/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-provisions/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-provisions/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-provisions/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-provisions/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-provisions/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"provisions").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-provisions/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-provisions/other_files/*").each do |file| system "cp", "-r", file, share/"provisions" end end diff --git a/Formula/font-qraydom-font-1764371345-0.rb b/Formula/font-qraydom-font-1764371345-0.rb index 8e0c0d0..0b46017 100644 --- a/Formula/font-qraydom-font-1764371345-0.rb +++ b/Formula/font-qraydom-font-1764371345-0.rb @@ -19,23 +19,23 @@ class FontQraydomFont17643713450 < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-qraydom-font-1764371345-0/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-qraydom-font-1764371345-0/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-qraydom-font-1764371345-0/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-qraydom-font-1764371345-0/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-qraydom-font-1764371345-0/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-qraydom-font-1764371345-0/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"qraydom-font-1764371345-0").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-qraydom-font-1764371345-0/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-qraydom-font-1764371345-0/other_files/*").each do |file| system "cp", "-r", file, share/"qraydom-font-1764371345-0" end end diff --git a/Formula/font-quasimoda-family.rb b/Formula/font-quasimoda-family.rb index 4f8a98a..5fdb392 100644 --- a/Formula/font-quasimoda-family.rb +++ b/Formula/font-quasimoda-family.rb @@ -19,23 +19,23 @@ class FontQuasimodaFamily < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-quasimoda-family/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-quasimoda-family/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-quasimoda-family/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-quasimoda-family/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-quasimoda-family/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-quasimoda-family/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"quasimoda-family").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-quasimoda-family/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-quasimoda-family/other_files/*").each do |file| system "cp", "-r", file, share/"quasimoda-family" end end diff --git a/Formula/font-revain.rb b/Formula/font-revain.rb index f47eb99..c8606aa 100644 --- a/Formula/font-revain.rb +++ b/Formula/font-revain.rb @@ -19,23 +19,23 @@ class FontRevain < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-revain/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-revain/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-revain/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-revain/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-revain/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-revain/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"revain").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-revain/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-revain/other_files/*").each do |file| system "cp", "-r", file, share/"revain" end end diff --git a/Formula/font-rigid-light.rb b/Formula/font-rigid-light.rb index de4da08..f2d5a1e 100644 --- a/Formula/font-rigid-light.rb +++ b/Formula/font-rigid-light.rb @@ -19,23 +19,23 @@ class FontRigidLight < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-rigid-light/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-rigid-light/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-rigid-light/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-rigid-light/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-rigid-light/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-rigid-light/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"rigid-light").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-rigid-light/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-rigid-light/other_files/*").each do |file| system "cp", "-r", file, share/"rigid-light" end end diff --git a/Formula/font-rocky_monkey.rb b/Formula/font-rocky_monkey.rb index 0e0f215..ddfce06 100644 --- a/Formula/font-rocky_monkey.rb +++ b/Formula/font-rocky_monkey.rb @@ -19,23 +19,23 @@ class FontRockyMonkey < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-rocky_monkey/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-rocky_monkey/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-rocky_monkey/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-rocky_monkey/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-rocky_monkey/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-rocky_monkey/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"rocky_monkey").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-rocky_monkey/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-rocky_monkey/other_files/*").each do |file| system "cp", "-r", file, share/"rocky_monkey" end end diff --git a/Formula/font-rondack.rb b/Formula/font-rondack.rb index 0e032f1..2e9f58b 100644 --- a/Formula/font-rondack.rb +++ b/Formula/font-rondack.rb @@ -19,23 +19,23 @@ class FontRondack < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-rondack/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-rondack/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-rondack/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-rondack/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-rondack/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-rondack/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"rondack").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-rondack/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-rondack/other_files/*").each do |file| system "cp", "-r", file, share/"rondack" end end diff --git a/Formula/font-runa.rb b/Formula/font-runa.rb index e49408d..2fde6ed 100644 --- a/Formula/font-runa.rb +++ b/Formula/font-runa.rb @@ -19,23 +19,23 @@ class FontRuna < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-runa/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-runa/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-runa/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-runa/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-runa/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-runa/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"runa").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-runa/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-runa/other_files/*").each do |file| system "cp", "-r", file, share/"runa" end end diff --git a/Formula/font-rusillaserif.rb b/Formula/font-rusillaserif.rb index a39d692..9edd5cb 100644 --- a/Formula/font-rusillaserif.rb +++ b/Formula/font-rusillaserif.rb @@ -19,23 +19,23 @@ class FontRusillaserif < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-rusillaserif/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-rusillaserif/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-rusillaserif/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-rusillaserif/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-rusillaserif/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-rusillaserif/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"rusillaserif").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-rusillaserif/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-rusillaserif/other_files/*").each do |file| system "cp", "-r", file, share/"rusillaserif" end end diff --git a/Formula/font-ruska.rb b/Formula/font-ruska.rb index 1b199b6..2b2fe01 100644 --- a/Formula/font-ruska.rb +++ b/Formula/font-ruska.rb @@ -19,23 +19,23 @@ class FontRuska < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-ruska/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-ruska/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-ruska/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-ruska/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-ruska/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-ruska/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"ruska").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-ruska/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-ruska/other_files/*").each do |file| system "cp", "-r", file, share/"ruska" end end diff --git a/Formula/font-scratches.rb b/Formula/font-scratches.rb index c2e6f75..929b198 100644 --- a/Formula/font-scratches.rb +++ b/Formula/font-scratches.rb @@ -19,23 +19,23 @@ class FontScratches < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-scratches/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-scratches/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-scratches/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-scratches/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-scratches/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-scratches/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"scratches").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-scratches/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-scratches/other_files/*").each do |file| system "cp", "-r", file, share/"scratches" end end diff --git a/Formula/font-scribblingtom.rb b/Formula/font-scribblingtom.rb index 5f08ccd..9b6ac5d 100644 --- a/Formula/font-scribblingtom.rb +++ b/Formula/font-scribblingtom.rb @@ -19,23 +19,23 @@ class FontScribblingtom < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-scribblingtom/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-scribblingtom/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-scribblingtom/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-scribblingtom/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-scribblingtom/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-scribblingtom/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"scribblingtom").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-scribblingtom/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-scribblingtom/other_files/*").each do |file| system "cp", "-r", file, share/"scribblingtom" end end diff --git a/Formula/font-sepura-light.rb b/Formula/font-sepura-light.rb index 1f18ca9..6448569 100644 --- a/Formula/font-sepura-light.rb +++ b/Formula/font-sepura-light.rb @@ -19,23 +19,23 @@ class FontSepuraLight < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-sepura-light/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-sepura-light/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-sepura-light/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-sepura-light/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-sepura-light/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-sepura-light/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"sepura-light").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-sepura-light/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-sepura-light/other_files/*").each do |file| system "cp", "-r", file, share/"sepura-light" end end diff --git a/Formula/font-sideboard.rb b/Formula/font-sideboard.rb index e0f5fc7..d93a1be 100644 --- a/Formula/font-sideboard.rb +++ b/Formula/font-sideboard.rb @@ -19,23 +19,23 @@ class FontSideboard < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-sideboard/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-sideboard/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-sideboard/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-sideboard/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-sideboard/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-sideboard/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"sideboard").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-sideboard/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-sideboard/other_files/*").each do |file| system "cp", "-r", file, share/"sideboard" end end diff --git a/Formula/font-siesta-serenade.rb b/Formula/font-siesta-serenade.rb index bf74a29..f138336 100644 --- a/Formula/font-siesta-serenade.rb +++ b/Formula/font-siesta-serenade.rb @@ -19,23 +19,23 @@ class FontSiestaSerenade < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-siesta-serenade/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-siesta-serenade/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-siesta-serenade/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-siesta-serenade/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-siesta-serenade/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-siesta-serenade/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"siesta-serenade").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-siesta-serenade/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-siesta-serenade/other_files/*").each do |file| system "cp", "-r", file, share/"siesta-serenade" end end diff --git a/Formula/font-sigitarian.rb b/Formula/font-sigitarian.rb index 5d3ad35..3d292a8 100644 --- a/Formula/font-sigitarian.rb +++ b/Formula/font-sigitarian.rb @@ -19,23 +19,23 @@ class FontSigitarian < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-sigitarian/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-sigitarian/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-sigitarian/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-sigitarian/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-sigitarian/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-sigitarian/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"sigitarian").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-sigitarian/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-sigitarian/other_files/*").each do |file| system "cp", "-r", file, share/"sigitarian" end end diff --git a/Formula/font-signate-grotesk-black.rb b/Formula/font-signate-grotesk-black.rb index 600087b..3c3f05c 100644 --- a/Formula/font-signate-grotesk-black.rb +++ b/Formula/font-signate-grotesk-black.rb @@ -19,23 +19,23 @@ class FontSignateGroteskBlack < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-signate-grotesk-black/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-signate-grotesk-black/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-signate-grotesk-black/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-signate-grotesk-black/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-signate-grotesk-black/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-signate-grotesk-black/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"signate-grotesk-black").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-signate-grotesk-black/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-signate-grotesk-black/other_files/*").each do |file| system "cp", "-r", file, share/"signate-grotesk-black" end end diff --git a/Formula/font-silkshy.rb b/Formula/font-silkshy.rb index 992cc75..fa49714 100644 --- a/Formula/font-silkshy.rb +++ b/Formula/font-silkshy.rb @@ -19,23 +19,23 @@ class FontSilkshy < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-silkshy/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-silkshy/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-silkshy/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-silkshy/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-silkshy/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-silkshy/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"silkshy").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-silkshy/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-silkshy/other_files/*").each do |file| system "cp", "-r", file, share/"silkshy" end end diff --git a/Formula/font-space-rabbit-font-1764372251-0.rb b/Formula/font-space-rabbit-font-1764372251-0.rb index 43ea7b7..98bd73e 100644 --- a/Formula/font-space-rabbit-font-1764372251-0.rb +++ b/Formula/font-space-rabbit-font-1764372251-0.rb @@ -19,23 +19,23 @@ class FontSpaceRabbitFont17643722510 < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-space-rabbit-font-1764372251-0/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-space-rabbit-font-1764372251-0/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-space-rabbit-font-1764372251-0/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-space-rabbit-font-1764372251-0/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-space-rabbit-font-1764372251-0/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-space-rabbit-font-1764372251-0/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"space-rabbit-font-1764372251-0").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-space-rabbit-font-1764372251-0/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-space-rabbit-font-1764372251-0/other_files/*").each do |file| system "cp", "-r", file, share/"space-rabbit-font-1764372251-0" end end diff --git a/Formula/font-spencer.rb b/Formula/font-spencer.rb index f2510e2..d4d5bf9 100644 --- a/Formula/font-spencer.rb +++ b/Formula/font-spencer.rb @@ -19,23 +19,23 @@ class FontSpencer < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-spencer/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-spencer/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-spencer/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-spencer/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-spencer/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-spencer/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"spencer").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-spencer/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-spencer/other_files/*").each do |file| system "cp", "-r", file, share/"spencer" end end diff --git a/Formula/font-springwood_note.rb b/Formula/font-springwood_note.rb index f870a82..fa83bed 100644 --- a/Formula/font-springwood_note.rb +++ b/Formula/font-springwood_note.rb @@ -19,23 +19,23 @@ class FontSpringwoodNote < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-springwood_note/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-springwood_note/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-springwood_note/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-springwood_note/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-springwood_note/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-springwood_note/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"springwood_note").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-springwood_note/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-springwood_note/other_files/*").each do |file| system "cp", "-r", file, share/"springwood_note" end end diff --git a/Formula/font-spritegraffiti.rb b/Formula/font-spritegraffiti.rb index b6aa212..9114f1d 100644 --- a/Formula/font-spritegraffiti.rb +++ b/Formula/font-spritegraffiti.rb @@ -19,23 +19,23 @@ class FontSpritegraffiti < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-spritegraffiti/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-spritegraffiti/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-spritegraffiti/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-spritegraffiti/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-spritegraffiti/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-spritegraffiti/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"spritegraffiti").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-spritegraffiti/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-spritegraffiti/other_files/*").each do |file| system "cp", "-r", file, share/"spritegraffiti" end end diff --git a/Formula/font-starship.rb b/Formula/font-starship.rb index 636fa63..5efe423 100644 --- a/Formula/font-starship.rb +++ b/Formula/font-starship.rb @@ -19,23 +19,23 @@ class FontStarship < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-starship/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-starship/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-starship/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-starship/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-starship/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-starship/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"starship").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-starship/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-starship/other_files/*").each do |file| system "cp", "-r", file, share/"starship" end end diff --git a/Formula/font-stockman.rb b/Formula/font-stockman.rb index 8f00f41..2c1cec5 100644 --- a/Formula/font-stockman.rb +++ b/Formula/font-stockman.rb @@ -19,23 +19,23 @@ class FontStockman < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-stockman/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-stockman/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-stockman/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-stockman/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-stockman/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-stockman/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"stockman").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-stockman/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-stockman/other_files/*").each do |file| system "cp", "-r", file, share/"stockman" end end diff --git a/Formula/font-stronghold.rb b/Formula/font-stronghold.rb index b39647a..b917563 100644 --- a/Formula/font-stronghold.rb +++ b/Formula/font-stronghold.rb @@ -19,23 +19,23 @@ class FontStronghold < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-stronghold/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-stronghold/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-stronghold/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-stronghold/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-stronghold/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-stronghold/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"stronghold").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-stronghold/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-stronghold/other_files/*").each do |file| system "cp", "-r", file, share/"stronghold" end end diff --git a/Formula/font-sunmore.rb b/Formula/font-sunmore.rb index e05fc7b..3ca93ab 100644 --- a/Formula/font-sunmore.rb +++ b/Formula/font-sunmore.rb @@ -19,23 +19,23 @@ class FontSunmore < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-sunmore/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-sunmore/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-sunmore/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-sunmore/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-sunmore/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-sunmore/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"sunmore").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-sunmore/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-sunmore/other_files/*").each do |file| system "cp", "-r", file, share/"sunmore" end end diff --git a/Formula/font-tallow-pen.rb b/Formula/font-tallow-pen.rb index 2947ea2..bc6ae5a 100644 --- a/Formula/font-tallow-pen.rb +++ b/Formula/font-tallow-pen.rb @@ -19,23 +19,23 @@ class FontTallowPen < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-tallow-pen/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tallow-pen/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-tallow-pen/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tallow-pen/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-tallow-pen/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tallow-pen/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"tallow-pen").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-tallow-pen/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-tallow-pen/other_files/*").each do |file| system "cp", "-r", file, share/"tallow-pen" end end diff --git a/Formula/font-tc_kindred.rb b/Formula/font-tc_kindred.rb index 66c1ef4..68fc6b9 100644 --- a/Formula/font-tc_kindred.rb +++ b/Formula/font-tc_kindred.rb @@ -19,23 +19,23 @@ class FontTcKindred < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-tc_kindred/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tc_kindred/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-tc_kindred/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tc_kindred/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-tc_kindred/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tc_kindred/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"tc_kindred").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-tc_kindred/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-tc_kindred/other_files/*").each do |file| system "cp", "-r", file, share/"tc_kindred" end end diff --git a/Formula/font-tcacrylichand.rb b/Formula/font-tcacrylichand.rb index 25392ec..ac18f06 100644 --- a/Formula/font-tcacrylichand.rb +++ b/Formula/font-tcacrylichand.rb @@ -19,23 +19,23 @@ class FontTcacrylichand < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-tcacrylichand/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tcacrylichand/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-tcacrylichand/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tcacrylichand/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-tcacrylichand/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tcacrylichand/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"tcacrylichand").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-tcacrylichand/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-tcacrylichand/other_files/*").each do |file| system "cp", "-r", file, share/"tcacrylichand" end end diff --git a/Formula/font-techla.rb b/Formula/font-techla.rb index 8fc65dc..fd54488 100644 --- a/Formula/font-techla.rb +++ b/Formula/font-techla.rb @@ -19,23 +19,23 @@ class FontTechla < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-techla/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-techla/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-techla/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-techla/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-techla/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-techla/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"techla").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-techla/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-techla/other_files/*").each do |file| system "cp", "-r", file, share/"techla" end end diff --git a/Formula/font-teenage-yellow-star.rb b/Formula/font-teenage-yellow-star.rb index 864e690..c24b474 100644 --- a/Formula/font-teenage-yellow-star.rb +++ b/Formula/font-teenage-yellow-star.rb @@ -19,23 +19,23 @@ class FontTeenageYellowStar < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-teenage-yellow-star/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-teenage-yellow-star/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-teenage-yellow-star/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-teenage-yellow-star/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-teenage-yellow-star/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-teenage-yellow-star/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"teenage-yellow-star").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-teenage-yellow-star/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-teenage-yellow-star/other_files/*").each do |file| system "cp", "-r", file, share/"teenage-yellow-star" end end diff --git a/Formula/font-tf-madcloud-teenage-foundry.rb b/Formula/font-tf-madcloud-teenage-foundry.rb index e5d4589..306d5d8 100644 --- a/Formula/font-tf-madcloud-teenage-foundry.rb +++ b/Formula/font-tf-madcloud-teenage-foundry.rb @@ -19,23 +19,23 @@ class FontTfMadcloudTeenageFoundry < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-tf-madcloud-teenage-foundry/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tf-madcloud-teenage-foundry/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-tf-madcloud-teenage-foundry/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tf-madcloud-teenage-foundry/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-tf-madcloud-teenage-foundry/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tf-madcloud-teenage-foundry/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"tf-madcloud-teenage-foundry").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-tf-madcloud-teenage-foundry/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-tf-madcloud-teenage-foundry/other_files/*").each do |file| system "cp", "-r", file, share/"tf-madcloud-teenage-foundry" end end diff --git a/Formula/font-the-great-outdoors.rb b/Formula/font-the-great-outdoors.rb index a7dd722..1dff768 100644 --- a/Formula/font-the-great-outdoors.rb +++ b/Formula/font-the-great-outdoors.rb @@ -19,23 +19,23 @@ class FontTheGreatOutdoors < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-the-great-outdoors/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-the-great-outdoors/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-the-great-outdoors/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-the-great-outdoors/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-the-great-outdoors/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-the-great-outdoors/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"the-great-outdoors").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-the-great-outdoors/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-the-great-outdoors/other_files/*").each do |file| system "cp", "-r", file, share/"the-great-outdoors" end end diff --git a/Formula/font-thourenz-inked.rb b/Formula/font-thourenz-inked.rb index 57580cc..ee15265 100644 --- a/Formula/font-thourenz-inked.rb +++ b/Formula/font-thourenz-inked.rb @@ -19,23 +19,23 @@ class FontThourenzInked < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-thourenz-inked/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-thourenz-inked/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-thourenz-inked/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-thourenz-inked/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-thourenz-inked/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-thourenz-inked/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"thourenz-inked").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-thourenz-inked/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-thourenz-inked/other_files/*").each do |file| system "cp", "-r", file, share/"thourenz-inked" end end diff --git a/Formula/font-tyler-handwriting.rb b/Formula/font-tyler-handwriting.rb index cc58258..43bd709 100644 --- a/Formula/font-tyler-handwriting.rb +++ b/Formula/font-tyler-handwriting.rb @@ -19,23 +19,23 @@ class FontTylerHandwriting < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-tyler-handwriting/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tyler-handwriting/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-tyler-handwriting/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tyler-handwriting/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-tyler-handwriting/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-tyler-handwriting/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"tyler-handwriting").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-tyler-handwriting/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-tyler-handwriting/other_files/*").each do |file| system "cp", "-r", file, share/"tyler-handwriting" end end diff --git a/Formula/font-valofire.rb b/Formula/font-valofire.rb index 8168405..8cd8c3a 100644 --- a/Formula/font-valofire.rb +++ b/Formula/font-valofire.rb @@ -19,23 +19,23 @@ class FontValofire < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-valofire/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-valofire/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-valofire/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-valofire/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-valofire/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-valofire/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"valofire").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-valofire/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-valofire/other_files/*").each do |file| system "cp", "-r", file, share/"valofire" end end diff --git a/Formula/font-vampire-mansion.rb b/Formula/font-vampire-mansion.rb index 9dc65fd..b4c8994 100644 --- a/Formula/font-vampire-mansion.rb +++ b/Formula/font-vampire-mansion.rb @@ -19,23 +19,23 @@ class FontVampireMansion < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-vampire-mansion/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-vampire-mansion/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-vampire-mansion/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-vampire-mansion/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-vampire-mansion/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-vampire-mansion/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"vampire-mansion").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-vampire-mansion/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-vampire-mansion/other_files/*").each do |file| system "cp", "-r", file, share/"vampire-mansion" end end diff --git a/Formula/font-vaselina.rb b/Formula/font-vaselina.rb index 90279e2..5f45fc8 100644 --- a/Formula/font-vaselina.rb +++ b/Formula/font-vaselina.rb @@ -19,23 +19,23 @@ class FontVaselina < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-vaselina/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-vaselina/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-vaselina/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-vaselina/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-vaselina/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-vaselina/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"vaselina").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-vaselina/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-vaselina/other_files/*").each do |file| system "cp", "-r", file, share/"vaselina" end end diff --git a/Formula/font-virus_killer.rb b/Formula/font-virus_killer.rb index 458f5c0..a9f16e5 100644 --- a/Formula/font-virus_killer.rb +++ b/Formula/font-virus_killer.rb @@ -19,23 +19,23 @@ class FontVirusKiller < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-virus_killer/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-virus_killer/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-virus_killer/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-virus_killer/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-virus_killer/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-virus_killer/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"virus_killer").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-virus_killer/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-virus_killer/other_files/*").each do |file| system "cp", "-r", file, share/"virus_killer" end end diff --git a/Formula/font-west-river.rb b/Formula/font-west-river.rb index 13d9b82..db53ff3 100644 --- a/Formula/font-west-river.rb +++ b/Formula/font-west-river.rb @@ -19,23 +19,23 @@ class FontWestRiver < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-west-river/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-west-river/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-west-river/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-west-river/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-west-river/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-west-river/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"west-river").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-west-river/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-west-river/other_files/*").each do |file| system "cp", "-r", file, share/"west-river" end end diff --git a/Formula/font-whtpny.rb b/Formula/font-whtpny.rb index f5099af..e74dd74 100644 --- a/Formula/font-whtpny.rb +++ b/Formula/font-whtpny.rb @@ -19,23 +19,23 @@ class FontWhtpny < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-whtpny/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-whtpny/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-whtpny/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-whtpny/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-whtpny/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-whtpny/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"whtpny").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-whtpny/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-whtpny/other_files/*").each do |file| system "cp", "-r", file, share/"whtpny" end end diff --git a/Formula/font-wistonia-signature.rb b/Formula/font-wistonia-signature.rb index 5bcd58b..69257bf 100644 --- a/Formula/font-wistonia-signature.rb +++ b/Formula/font-wistonia-signature.rb @@ -19,23 +19,23 @@ class FontWistoniaSignature < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-wistonia-signature/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-wistonia-signature/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-wistonia-signature/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-wistonia-signature/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-wistonia-signature/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-wistonia-signature/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"wistonia-signature").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-wistonia-signature/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-wistonia-signature/other_files/*").each do |file| system "cp", "-r", file, share/"wistonia-signature" end end diff --git a/Formula/font-ws-lowen.rb b/Formula/font-ws-lowen.rb index 424ac50..6b471be 100644 --- a/Formula/font-ws-lowen.rb +++ b/Formula/font-ws-lowen.rb @@ -19,23 +19,23 @@ class FontWsLowen < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-ws-lowen/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-ws-lowen/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-ws-lowen/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-ws-lowen/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-ws-lowen/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-ws-lowen/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"ws-lowen").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-ws-lowen/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-ws-lowen/other_files/*").each do |file| system "cp", "-r", file, share/"ws-lowen" end end diff --git a/Formula/font-wt-karsa-mono.rb b/Formula/font-wt-karsa-mono.rb index d76ec10..89e7ec8 100644 --- a/Formula/font-wt-karsa-mono.rb +++ b/Formula/font-wt-karsa-mono.rb @@ -19,23 +19,23 @@ class FontWtKarsaMono < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-wt-karsa-mono/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-wt-karsa-mono/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-wt-karsa-mono/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-wt-karsa-mono/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-wt-karsa-mono/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-wt-karsa-mono/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"wt-karsa-mono").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-wt-karsa-mono/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-wt-karsa-mono/other_files/*").each do |file| system "cp", "-r", file, share/"wt-karsa-mono" end end diff --git a/Formula/font-youchat.rb b/Formula/font-youchat.rb index 8e90a48..db7082c 100644 --- a/Formula/font-youchat.rb +++ b/Formula/font-youchat.rb @@ -19,23 +19,23 @@ class FontYouchat < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-youchat/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-youchat/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-youchat/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-youchat/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-youchat/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-youchat/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"youchat").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-youchat/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-youchat/other_files/*").each do |file| system "cp", "-r", file, share/"youchat" end end diff --git a/Formula/font-zebra.rb b/Formula/font-zebra.rb index 9e3dbdf..cef238c 100644 --- a/Formula/font-zebra.rb +++ b/Formula/font-zebra.rb @@ -19,23 +19,23 @@ class FontZebra < Formula (share/"fonts/webfonts").mkpath # Install TTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-zebra/ttf/*.ttf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-zebra/ttf/*.ttf").each do |font| system "cp", font, share/"fonts/truetype" end # Install OTF fonts - Dir.glob("homebrew-fonts-main/font_files/font-zebra/otf/*.otf").each do |font| + Dir.glob("homebrew-fonts/font_files/font-zebra/otf/*.otf").each do |font| system "cp", font, share/"fonts/opentype" end # Install web fonts - Dir.glob("homebrew-fonts-main/font_files/font-zebra/web/*.{woff,woff2,eot,svg}").each do |font| + Dir.glob("homebrew-fonts/font_files/font-zebra/web/*.{woff,woff2,eot,svg}").each do |font| system "cp", font, share/"fonts/webfonts" end # Install documentation and other files (share/"zebra").mkpath - Dir.glob("homebrew-fonts-main/font_files/font-zebra/other_files/*").each do |file| + Dir.glob("homebrew-fonts/font_files/font-zebra/other_files/*").each do |file| system "cp", "-r", file, share/"zebra" end end diff --git a/PROJECT.md b/PROJECT.md index 8cb7349..3ce24c2 100644 --- a/PROJECT.md +++ b/PROJECT.md @@ -124,7 +124,7 @@ python3 .fontfoldercleanup/cleanup_font_folders.py --path font_files - **File:** `Formula/font-.rb` (e.g. `font-pixelon.rb`, `font-graham_hand.rb`). - **Class:** `Font` — the part after `font-` is converted to valid Ruby (e.g. `font-acrylic-hand` → `FontAcrylicHand`, `font-graham_hand` → `FontGrahamHand`). No hyphens in the class name. -- **Source:** Formulae assume the archive unpacks as `homebrew-fonts-main/` and fonts live under `homebrew-fonts-main/font_files/font-/`. +- **Source:** Formulae assume the archive unpacks as `homebrew-fonts/` and fonts live under `homebrew-fonts/font_files/font-/`. - **Comment in formulae:** "This file was generated by the font folder cleanup script — Do not edit this file directly." Edits should go in the generator (`.fontfoldercleanup/create_homebrew_formula.py`) or in font folder structure/scripts. ## Technical Notes diff --git a/tests/test_install_works.py b/tests/test_install_works.py index c31b5e1..a84d8a7 100644 --- a/tests/test_install_works.py +++ b/tests/test_install_works.py @@ -16,9 +16,9 @@ from tests.conftest import ( def _run_install_simulation(font_name: str, font_dir: Path, prefix: Path, formula_name: str) -> None: """ Simulate the formula's install: copy ttf/otf/web/other_files to prefix - as the formula would (same layout as homebrew-fonts-main/font_files//). + as the formula would (same layout as homebrew-fonts/font_files//). """ - # Layout formula expects: homebrew-fonts-main/font_files//{ttf,otf,web,other_files} + # Layout formula expects: homebrew-fonts/font_files//{ttf,otf,web,other_files} # We use font_dir directly (same layout). (prefix / "fonts").mkdir(parents=True) (prefix / "fonts/truetype").mkdir(parents=True)