Convert from Homebrew Formulae to Casks for font installation

Formulae can't install to ~/Library/Fonts/ due to Homebrew sandboxing.
Casks have a built-in `font` artifact that handles this automatically.

- Replace Formula/ with Casks/ directory
- Rewrite generator to produce cask files instead of formulae
- Add .ttc (TrueType Collection) support
- Update all tests for cask format
- Update CLI and documentation
- Fonts with no installable files (TTF/OTF/TTC) are skipped

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matt Troutman 2026-03-07 21:38:59 -06:00
parent cb1918c30f
commit 76743cdc4d
No known key found for this signature in database
273 changed files with 2509 additions and 10048 deletions

View file

@ -1,68 +1,44 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
"""Generate Homebrew Cask files for all fonts in font_files/."""
import re import re
from pathlib import Path from pathlib import Path
def formula_name_to_class(formula_name: str) -> str: WEB_EXTENSIONS = (".woff", ".woff2", ".eot", ".svg")
"""Convert formula name (e.g. 'acrylic-hand', 'graham_hand') to valid Ruby PascalCase."""
# Split on hyphens and underscores, capitalize each segment, join (no separators)
parts = re.split(r"[-_]+", formula_name)
return "".join(p.capitalize() for p in parts if p)
class HomebrewFormulaGenerator: class HomebrewCaskGenerator:
def __init__(self, fonts_dir): def __init__(self, fonts_dir):
self.fonts_dir = Path(fonts_dir) self.fonts_dir = Path(fonts_dir)
self.formula_dir = self.fonts_dir.parent / "Formula" self.casks_dir = self.fonts_dir.parent / "Casks"
self.formula_dir.mkdir(exist_ok=True) self.casks_dir.mkdir(exist_ok=True)
self.web_extensions = (".woff", ".woff2", ".eot", ".svg")
def _font_has_files(self, font_dir: Path) -> tuple[bool, bool, bool, bool]: def _collect_font_files(self, font_dir: Path) -> list[str]:
"""Return (has_ttf, has_otf, has_web, has_other) for the font folder.""" """Return list of font file paths relative to extracted archive root for the font artifact."""
has_ttf = any((font_dir / "ttf").glob("*.ttf")) font_name = font_dir.name
has_otf = any((font_dir / "otf").glob("*.otf")) files = []
ttf_dir = font_dir / "ttf"
for f in sorted(ttf_dir.iterdir()):
if f.is_file() and f.suffix.lower() in (".ttf", ".ttc"):
files.append(f"font_files/{font_name}/ttf/{f.name}")
for otf in sorted((font_dir / "otf").glob("*.otf")):
files.append(f"font_files/{font_name}/otf/{otf.name}")
return files
def _collect_all_info(self, font_dir: Path) -> dict:
"""Collect metadata about a font directory."""
font_name = font_dir.name
formula_name = font_name.replace("font-", "", 1)
font_files = self._collect_font_files(font_dir)
# Determine what types are present
has_ttf = any(f.endswith(".ttf") or f.endswith(".ttc") for f in font_files)
has_otf = any(f.endswith(".otf") for f in font_files)
web_dir = font_dir / "web" web_dir = font_dir / "web"
has_web = any( has_web = any(
f.suffix.lower() in self.web_extensions for f in web_dir.glob("*") if f.is_file() f.suffix.lower() in WEB_EXTENSIONS for f in web_dir.glob("*") if f.is_file()
) )
other_dir = font_dir / "other_files"
has_other = any(other_dir.iterdir()) if other_dir.exists() else False
return (has_ttf, has_otf, has_web, has_other)
def _generate_test_block(
self, formula_name: str, has_ttf: bool, has_otf: bool, has_web: bool, has_other: bool
) -> str:
"""Generate test block that asserts at least one install path has files for this formula."""
assertions = []
if has_ttf:
assertions.append('assert (share/"fonts/truetype").glob("*.ttf").any?, "No TTF fonts installed"')
if has_otf:
assertions.append('assert (share/"fonts/opentype").glob("*.otf").any?, "No OTF fonts installed"')
if has_web:
assertions.append(
'assert (share/"fonts/webfonts").glob("*").any?, "No web fonts installed"'
)
if has_other:
assertions.append(
f'assert_predicate share/"{formula_name}", :directory?, "Other files dir missing"'
)
if not assertions:
assertions.append(
f'assert_predicate share/"{formula_name}", :directory?, "Formula share dir missing"'
)
return "\n ".join(assertions)
def generate_formula_content(
self,
font_name: str,
formula_name: str,
has_ttf: bool,
has_otf: bool,
has_web: bool,
has_other: bool,
) -> str:
"""Generate the Ruby formula content for a font."""
class_name = formula_name_to_class(formula_name)
extensions = [] extensions = []
if has_ttf: if has_ttf:
extensions.append("TTF") extensions.append("TTF")
@ -71,110 +47,71 @@ class HomebrewFormulaGenerator:
if has_web: if has_web:
extensions.append("web") extensions.append("web")
ext_comment = " ".join(extensions) if extensions else "other_files only" ext_comment = " ".join(extensions) if extensions else "other_files only"
test_block = self._generate_test_block(
formula_name, has_ttf, has_otf, has_web, has_other
)
return f"""# typed: false
# frozen_string_literal: true
# This file was generated by the font folder cleanup script return {
"font_name": font_name,
"formula_name": formula_name,
"font_files": font_files,
"ext_comment": ext_comment,
}
def generate_cask_content(self, info: dict) -> str:
"""Generate the Ruby cask content for a font."""
font_name = info["font_name"]
formula_name = info["formula_name"]
font_files = info["font_files"]
ext_comment = info["ext_comment"]
# Build font artifact lines
font_lines = "\n".join(f' font "{f}"' for f in font_files)
# Human-readable name: replace hyphens/underscores with spaces, title case
display_name = re.sub(r"[-_]+", " ", formula_name).title()
return f"""# This file was generated by the font folder cleanup script
# Do not edit this file directly # Do not edit this file directly
# Installs: {ext_comment} # Installs: {ext_comment}
class Font{class_name} < Formula cask "{font_name}" do
desc "Font: {formula_name}"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
version "1.0.0" version "1.0.0"
sha256 :no_check
def install url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
# Create font directories name "{display_name}"
(share/"fonts").mkpath homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
(share/"fonts/truetype").mkpath
(share/"fonts/opentype").mkpath
(share/"fonts/webfonts").mkpath
# Install TTF fonts {font_lines}
Dir.glob("font_files/{font_name}/ttf/*.ttf").each do |font|
system "cp", font, share/"fonts/truetype"
end
# Install OTF fonts
Dir.glob("font_files/{font_name}/otf/*.otf").each do |font|
system "cp", font, share/"fonts/opentype"
end
# Install web fonts
Dir.glob("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("font_files/{font_name}/other_files/*").each do |file|
system "cp", "-r", file, share/"{formula_name}"
end
end
def post_install
user_fonts = Pathname.new(File.expand_path("~/Library/Fonts"))
user_fonts.mkpath
Dir.glob(share/"fonts/truetype/*.ttf").each do |f|
target = user_fonts/File.basename(f)
FileUtils.rm_f(target)
FileUtils.ln_sf(f, target)
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
target = user_fonts/File.basename(f)
FileUtils.rm_f(target)
FileUtils.ln_sf(f, target)
end
end
def caveats
<<~EOS
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Web fonts and other files are available in:
#{{share}}/fonts/webfonts
#{{share}}/{formula_name}
EOS
end
test do
{test_block}
end
end end
""" """
def generate_formulas(self): def generate_casks(self):
"""Generate Homebrew formulas for all font folders.""" """Generate Homebrew casks for all font folders."""
for font_dir in sorted(self.fonts_dir.glob("font-*")): for font_dir in sorted(self.fonts_dir.glob("font-*")):
if not font_dir.is_dir(): if not font_dir.is_dir():
continue continue
font_name = font_dir.name info = self._collect_all_info(font_dir)
formula_name = font_name.replace("font-", "", 1) if not info["font_files"]:
has_ttf, has_otf, has_web, has_other = self._font_has_files(font_dir) print(f"Skipping {font_dir.name}: no TTF or OTF files")
formula_content = self.generate_formula_content( continue
font_name, formula_name, has_ttf, has_otf, has_web, has_other
) cask_content = self.generate_cask_content(info)
formula_path = self.formula_dir / f"font-{formula_name}.rb" cask_path = self.casks_dir / f"{font_dir.name}.rb"
formula_path.write_text(formula_content) cask_path.write_text(cask_content)
print(f"Generated formula for font-{formula_name}") print(f"Generated cask for {font_dir.name}")
def main(): def main():
# Get the absolute path to the font_files directory
script_dir = Path(__file__).parent script_dir = Path(__file__).parent
fonts_dir = script_dir.parent / 'font_files' fonts_dir = script_dir.parent / "font_files"
if not fonts_dir.exists(): if not fonts_dir.exists():
print(f"Error: Font directory not found: {fonts_dir}") print(f"Error: Font directory not found: {fonts_dir}")
return return
generator = HomebrewFormulaGenerator(fonts_dir) generator = HomebrewCaskGenerator(fonts_dir)
generator.generate_formulas() generator.generate_casks()
if __name__ == "__main__": if __name__ == "__main__":
main() main()

View file

@ -4,12 +4,12 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
## What This Is ## What This Is
A Homebrew tap for custom fonts. Users `brew tap` and then `brew install font-<name>`. The repo contains font assets in `font_files/` and generated Ruby formulae in `Formula/`. A Homebrew tap for custom fonts. Users `brew tap` and then `brew install --cask font-<name>`. The repo contains font assets in `font_files/` and generated Ruby cask files in `Casks/`.
## Commands ## Commands
```bash ```bash
# Add or update a font (cleanup + formula generation + tests + brew audit) # Add or update a font (cleanup + cask generation + tests + brew audit)
uv run add-font <path_or_name> uv run add-font <path_or_name>
uv run add-font <path_or_name> --no-test --no-audit uv run add-font <path_or_name> --no-test --no-audit
@ -22,7 +22,7 @@ uv run pytest tests/test_font_structure.py -v
# Run tests for a specific font # Run tests for a specific font
uv run pytest tests/ -v -k "font-acrylic-hand" uv run pytest tests/ -v -k "font-acrylic-hand"
# Regenerate all formulae (without the full add-font flow) # Regenerate all casks (without the full add-font flow)
python3 .fontfoldercleanup/create_homebrew_formula.py python3 .fontfoldercleanup/create_homebrew_formula.py
# Reorganize font folders only # Reorganize font folders only
@ -32,22 +32,23 @@ python3 .fontfoldercleanup/cleanup_font_folders.py --path font_files
## Architecture ## Architecture
- **`font_files/font-<name>/`** — Each font has exactly 4 subdirs: `ttf/`, `otf/`, `web/`, `other_files/`. No other top-level files allowed. - **`font_files/font-<name>/`** — Each font has exactly 4 subdirs: `ttf/`, `otf/`, `web/`, `other_files/`. No other top-level files allowed.
- **`Formula/font-<name>.rb`** — Generated Ruby formulae. **Never edit by hand.** Edits go in `.fontfoldercleanup/create_homebrew_formula.py`. - **`Casks/font-<name>.rb`** — Generated Ruby cask files. **Never edit by hand.** Edits go in `.fontfoldercleanup/create_homebrew_formula.py`.
- **`tap_cli/main.py`** — The `add-font` CLI entry point. Copies font to `font_files/`, runs cleanup script, runs formula generator, then runs tests and `brew audit`. - **`tap_cli/main.py`** — The `add-font` CLI entry point. Copies font to `font_files/`, runs cleanup script, runs cask generator, then runs tests and `brew audit`.
- **`.fontfoldercleanup/cleanup_font_folders.py`** — Sorts loose font files into `ttf/`, `otf/`, `web/`, `other_files/` subdirs. - **`.fontfoldercleanup/cleanup_font_folders.py`** — Sorts loose font files into `ttf/`, `otf/`, `web/`, `other_files/` subdirs.
- **`.fontfoldercleanup/create_homebrew_formula.py`** — Scans `font_files/font-*` and writes one `.rb` per font. Contains `HomebrewFormulaGenerator` class and `formula_name_to_class()` for Ruby PascalCase conversion. - **`.fontfoldercleanup/create_homebrew_formula.py`** — Scans `font_files/font-*` and writes one cask `.rb` per font in `Casks/`.
- **`tests/`** — Parametrized pytest suite. Tests validate: folder structure, formula existence, formula content (paths, class name), no orphan formulae, no duplicates. - **`tests/`** — Parametrized pytest suite. Tests validate: folder structure, cask existence, cask content (paths, identifier), no orphan casks, no duplicates.
- **`To Sort/`** — Staging area for new downloads not yet processed. - **`To Sort/`** — Staging area for new downloads not yet processed.
## Formula Naming Convention ## Cask Naming Convention
`font-<name>` → Ruby class `Font<PascalCase>`. Split on hyphens/underscores, capitalize each part: Cask files use kebab-case identifiers matching the font folder name: `font-<name>`.
- `font-acrylic-hand``FontAcrylicHand` - `font-acrylic-hand``cask "font-acrylic-hand" do`
- `font-graham_hand``FontGrahamHand`
Fonts are installed to `~/Library/Fonts/` automatically via the `font` artifact.
## Key Constraints ## Key Constraints
- Python 3, standard library only (pathlib, shutil, argparse, re). pytest is the sole dependency. - 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/`. - Casks 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). - 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`. - `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`.

View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-abbiescriptpro-rg" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Abbiescriptpro Rg"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-abbiescriptpro-rg/ttf/abbiescriptpro-rg.ttf"
font "font_files/font-abbiescriptpro-rg/otf/abbiescriptpro-rg.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-acrylic-hand" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Acrylic Hand"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-acrylic-hand/ttf/acylicalhand-thick.ttf"
end

14
Casks/font-agpx.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-agpx" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Agpx"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-agpx/otf/agpx.otf"
end

14
Casks/font-airosol.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-airosol" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Airosol"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-airosol/otf/airosol.otf"
end

14
Casks/font-alphalyrae.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-alphalyrae" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Alphalyrae"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-alphalyrae/otf/alphalyrae-medium.otf"
end

14
Casks/font-angular.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-angular" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Angular"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-angular/otf/angular.otf"
end

15
Casks/font-arinoe.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-arinoe" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Arinoe"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-arinoe/ttf/arinoe.ttf"
font "font_files/font-arinoe/otf/arinoe.otf"
end

18
Casks/font-averasanstc.rb Normal file
View file

@ -0,0 +1,18 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-averasanstc" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Averasanstc"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-averasanstc/otf/averasanstc.otf"
font "font_files/font-averasanstc/otf/averasanstcbld.otf"
font "font_files/font-averasanstc/otf/averasanstcbrsh.otf"
font "font_files/font-averasanstc/otf/averasanstclt.otf"
font "font_files/font-averasanstc/otf/averasanstcsktch.otf"
end

15
Casks/font-baduy.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-baduy" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Baduy"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-baduy/ttf/baduy.ttf"
font "font_files/font-baduy/otf/baduy.otf"
end

15
Casks/font-bee-honey.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-bee-honey" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Bee Honey"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-bee-honey/ttf/bee-honey-regular.ttf"
font "font_files/font-bee-honey/ttf/bee-honey-svg.ttf"
end

15
Casks/font-benford.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-benford" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Benford"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-benford/ttf/benford-demo.ttf"
font "font_files/font-benford/otf/benford-demo.otf"
end

View file

@ -0,0 +1,17 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-bobby-jones-soft-free" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Bobby Jones Soft Free"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-bobby-jones-soft-free/ttf/bobby-rough-soft-outline.ttf"
font "font_files/font-bobby-jones-soft-free/ttf/bobby-rough-soft.ttf"
font "font_files/font-bobby-jones-soft-free/otf/bobby-jones-soft-outline.otf"
font "font_files/font-bobby-jones-soft-free/otf/bobby-jones-soft.otf"
end

View file

@ -0,0 +1,27 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-bouncy_castle_free" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Bouncy Castle Free"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-bouncy_castle_free/ttf/bouncy-castle-bonus-bold.ttf"
font "font_files/font-bouncy_castle_free/ttf/bouncy-castle-bonus.ttf"
font "font_files/font-bouncy_castle_free/ttf/bouncy-castle-sans.ttf"
font "font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss01.ttf"
font "font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss02.ttf"
font "font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss03.ttf"
font "font_files/font-bouncy_castle_free/ttf/bouncy-castle.ttf"
font "font_files/font-bouncy_castle_free/otf/bouncy-castle-bonus-bold.otf"
font "font_files/font-bouncy_castle_free/otf/bouncy-castle-bonus.otf"
font "font_files/font-bouncy_castle_free/otf/bouncy-castle-sans.otf"
font "font_files/font-bouncy_castle_free/otf/bouncy-castle-ss01.otf"
font "font_files/font-bouncy_castle_free/otf/bouncy-castle-ss02.otf"
font "font_files/font-bouncy_castle_free/otf/bouncy-castle-ss03.otf"
font "font_files/font-bouncy_castle_free/otf/bouncy-castle.otf"
end

View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-brightsight-02" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Brightsight 02"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-brightsight-02/ttf/brightsight02.ttf"
font "font_files/font-brightsight-02/otf/brightsight02.otf"
end

17
Casks/font-brixtonline.rb Normal file
View file

@ -0,0 +1,17 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-brixtonline" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Brixtonline"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-brixtonline/ttf/brixtonln-lt.ttf"
font "font_files/font-brixtonline/ttf/brixtonln-rg.ttf"
font "font_files/font-brixtonline/otf/brixtonln-lt.otf"
font "font_files/font-brixtonline/otf/brixtonln-rg.otf"
end

18
Casks/font-broke.rb Normal file
View file

@ -0,0 +1,18 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-broke" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Broke"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-broke/otf/broke-bold.otf"
font "font_files/font-broke/otf/broke-medium.otf"
font "font_files/font-broke/otf/broke-regular.otf"
font "font_files/font-broke/otf/brokefat-black.otf"
font "font_files/font-broke/otf/brokefat-bold.otf"
end

15
Casks/font-buffy.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-buffy" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Buffy"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-buffy/ttf/buffy.ttf"
font "font_files/font-buffy/otf/buffy.otf"
end

View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-cheeky-rabbit" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Cheeky Rabbit"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-cheeky-rabbit/ttf/cheeky-rabbit.ttf"
font "font_files/font-cheeky-rabbit/otf/cheekyrabbit.otf"
end

14
Casks/font-chido.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-chido" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Chido"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-chido/otf/chido.otf"
end

View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-christmas-picture" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Christmas Picture"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-christmas-picture/ttf/christmas-picture.ttf"
font "font_files/font-christmas-picture/otf/christmas-picture.otf"
end

15
Casks/font-chrone.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-chrone" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Chrone"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-chrone/ttf/chrone-demo.ttf"
font "font_files/font-chrone/otf/chrone-demo.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-clancy-experience" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Clancy Experience"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-clancy-experience/otf/clancy-experience.otf"
end

15
Casks/font-clancy.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-clancy" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Clancy"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-clancy/otf/_clancy-free.otf"
font "font_files/font-clancy/otf/clancy-free.otf"
end

15
Casks/font-code.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-code" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Code"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-code/otf/code-bold.otf"
font "font_files/font-code/otf/code-light.otf"
end

15
Casks/font-coffina.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-coffina" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Coffina"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-coffina/ttf/coffina.ttf"
font "font_files/font-coffina/otf/coffina.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-copixel-font-1764372079-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Copixel Font 1764372079 0"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-copixel-font-1764372079-0/otf/Copixel-Demo-BF6873ccc4785f8.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-creamy-dreams" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Creamy Dreams"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-creamy-dreams/otf/creamy-dreams.otf"
end

14
Casks/font-cucurucho.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-cucurucho" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Cucurucho"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-cucurucho/otf/cucurucho.otf"
end

15
Casks/font-damn.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-damn" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Damn"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-damn/ttf/damn.ttf"
font "font_files/font-damn/otf/damn.otf"
end

15
Casks/font-dance-blues.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-dance-blues" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Dance Blues"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-dance-blues/ttf/dance-blues.ttf"
font "font_files/font-dance-blues/otf/dance-blues.otf"
end

25
Casks/font-depixel.rb Normal file
View file

@ -0,0 +1,25 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF web
cask "font-depixel" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Depixel"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-depixel/ttf/depixelbreit-webfont.ttf"
font "font_files/font-depixel/ttf/depixelbreitfett-webfont.ttf"
font "font_files/font-depixel/ttf/depixelhalbfett-webfont.ttf"
font "font_files/font-depixel/ttf/depixelillegible-webfont.ttf"
font "font_files/font-depixel/ttf/depixelklein-webfont.ttf"
font "font_files/font-depixel/ttf/depixelschmal-webfont.ttf"
font "font_files/font-depixel/otf/depixelbreit.otf"
font "font_files/font-depixel/otf/depixelbreitfett.otf"
font "font_files/font-depixel/otf/depixelhalbfett.otf"
font "font_files/font-depixel/otf/depixelillegible.otf"
font "font_files/font-depixel/otf/depixelklein.otf"
font "font_files/font-depixel/otf/depixelschmal.otf"
end

View file

@ -0,0 +1,16 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-depok-cubism" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Depok Cubism"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-depok-cubism/ttf/depok-cubism.ttf"
font "font_files/font-depok-cubism/otf/depok-cubism.otf"
font "font_files/font-depok-cubism/otf/kosmos.otf"
end

14
Casks/font-devils-cut.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-devils-cut" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Devils Cut"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-devils-cut/otf/devilscut-shadow-personaluseonly.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-dirty-clouds" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Dirty Clouds"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-dirty-clouds/otf/dirty-clouds.otf"
end

15
Casks/font-district.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-district" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "District"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-district/ttf/district.ttf"
font "font_files/font-district/otf/district-regular.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-dk-frozen-memory" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Dk Frozen Memory"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-dk-frozen-memory/otf/dk-frozen-memory.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-domaine-display" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Domaine Display"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-domaine-display/otf/domaine-display-bold.otf"
end

14
Casks/font-dtmilagros.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-dtmilagros" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Dtmilagros"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-dtmilagros/otf/dt-milagros.otf"
end

17
Casks/font-ep-boxi.rb Normal file
View file

@ -0,0 +1,17 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF web
cask "font-ep-boxi" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Ep Boxi"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-ep-boxi/otf/ep-boxi-bi.otf"
font "font_files/font-ep-boxi/otf/ep-boxi-black.otf"
font "font_files/font-ep-boxi/otf/ep-boxi-bold.otf"
font "font_files/font-ep-boxi/otf/ep-boxi.otf"
end

14
Casks/font-f37-stout.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF web
cask "font-f37-stout" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "F37 Stout"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-f37-stout/ttf/f37stout-black.ttc"
end

15
Casks/font-flyover.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-flyover" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Flyover"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-flyover/ttf/flyover.ttf"
font "font_files/font-flyover/otf/flyover.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-fresh-christmas-font-1764370888-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Fresh Christmas Font 1764370888 0"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-fresh-christmas-font-1764370888-0/otf/Fresh-Christmas.otf"
end

17
Casks/font-friem.rb Normal file
View file

@ -0,0 +1,17 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF web
cask "font-friem" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Friem"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-friem/ttf/friem-regular.ttf"
font "font_files/font-friem/ttf/friem-texture.ttf"
font "font_files/font-friem/otf/friem-regular.otf"
font "font_files/font-friem/otf/friem-texture.otf"
end

15
Casks/font-funky-round.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-funky-round" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Funky Round"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-funky-round/otf/funkyround.otf"
font "font_files/font-funky-round/otf/funkyround_striped.otf"
end

14
Casks/font-futura-1986.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-futura-1986" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Futura 1986"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-futura-1986/otf/futura1986.otf"
end

14
Casks/font-galaxia.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-galaxia" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Galaxia"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-galaxia/otf/galaxia-personal-used-flava.otf"
end

15
Casks/font-gilbert.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF web
cask "font-gilbert" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Gilbert"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-gilbert/otf/gilbert-bold-preview5.otf"
font "font_files/font-gilbert/otf/gilbert-color-bold-preview5.otf"
end

15
Casks/font-graham_hand.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-graham_hand" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Graham Hand"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-graham_hand/ttf/grahamhand.ttf"
font "font_files/font-graham_hand/otf/grahamhand.otf"
end

15
Casks/font-gyanko.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-gyanko" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Gyanko"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-gyanko/otf/gyanko-regular.otf"
font "font_files/font-gyanko/otf/gyanko-stencil.otf"
end

15
Casks/font-hectra.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-hectra" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Hectra"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-hectra/otf/hectra-bold.otf"
font "font_files/font-hectra/otf/hectra-rg.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-hello-headline" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Hello Headline"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-hello-headline/otf/hello-headline.otf"
end

14
Casks/font-horseland.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-horseland" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Horseland"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-horseland/ttf/wtf-horseland-was-habib.ttf"
end

69
Casks/font-idgrotesk.rb Normal file
View file

@ -0,0 +1,69 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF web
cask "font-idgrotesk" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Idgrotesk"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-bold.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-bolditalic.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-book.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-bookitalic.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-italic.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-light.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-lightitalic.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-medium.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-mediumitalic.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-regular.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-semibold.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-semibolditalic.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-thin.ttf"
font "font_files/font-idgrotesk/ttf/_idgrotesktrial-thinitalic.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-bold.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-bolditalic.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-book.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-bookitalic.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-italic.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-light.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-lightitalic.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-medium.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-mediumitalic.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-regular.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-semibold.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-semibolditalic.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-thin.ttf"
font "font_files/font-idgrotesk/ttf/idgrotesktrial-thinitalic.ttf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-bold.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-bolditalic.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-book.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-bookitalic.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-italic.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-light.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-lightitalic.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-medium.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-mediumitalic.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-regular.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-semibold.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-semibolditalic.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-thin.otf"
font "font_files/font-idgrotesk/otf/_idgrotesktrial-thinitalic.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-bold.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-bolditalic.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-book.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-bookitalic.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-italic.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-light.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-lightitalic.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-medium.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-mediumitalic.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-regular.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-semibold.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-semibolditalic.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-thin.otf"
font "font_files/font-idgrotesk/otf/idgrotesktrial-thinitalic.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-introvert-font-2-1764371655-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Introvert Font 2 1764371655 0"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-introvert-font-2-1764371655-0/otf/Introvert-BF691f1a5a2336d.otf"
end

15
Casks/font-jimmy-sans.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-jimmy-sans" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Jimmy Sans"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-jimmy-sans/otf/jimmysans-brush.otf"
font "font_files/font-jimmy-sans/otf/jimmysans-rg.otf"
end

15
Casks/font-joc.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-joc" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Joc"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-joc/otf/joc-fill.otf"
font "font_files/font-joc/otf/joc-line.otf"
end

14
Casks/font-kompeni.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-kompeni" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Kompeni"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-kompeni/ttf/kompeni-regular.ttf"
end

14
Casks/font-lab-grotesk.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-lab-grotesk" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Lab Grotesk"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-lab-grotesk/otf/lab-grotesk.otf"
end

View file

@ -0,0 +1,17 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-lance-tomchalky" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Lance Tomchalky"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-lance-tomchalky/ttf/lancerg.ttf"
font "font_files/font-lance-tomchalky/ttf/lancesansrg.ttf"
font "font_files/font-lance-tomchalky/otf/lancerg.otf"
font "font_files/font-lance-tomchalky/otf/lancesansrg.otf"
end

14
Casks/font-latcha.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-latcha" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Latcha"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-latcha/otf/latcha-personaluseonly.otf"
end

View file

@ -0,0 +1,34 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-lazare-grotesk-font-family-1764370398-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Lazare Grotesk Font Family 1764370398 0"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Black-BF647806db20415.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BlackBack-BF647806dbb006f.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BlackItalic-BF647806dbe2cde.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Bold-BF647806db04a12.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BoldBack-BF647806dbbac82.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BoldItalic-BF647806dbbf597.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Light-BF647806db1a1e7.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-LightBack-BF647806dbc68ff.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-LightItalic-BF647806dbc7770.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Medium-BF647806db24482.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-MediumBack-BF647806db9228d.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-MediumItalic-BF647806dc09b7e.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Regular-BF647806db2b1eb.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-RegularBack-BF647806dba9aa2.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-RegularItalic-BF647806dc0245f.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Thin-BF647806dbadb5b.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-ThinBack-BF647806dbcc22e.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-ThinItalic-BF647806dbe4f58.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThin-BF647806dbbdb3a.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThinBack-BF647806db89f02.otf"
font "font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThinItalic-BF647806dbf0c32.otf"
end

14
Casks/font-lexa.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-lexa" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Lexa"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-lexa/otf/lexa.otf"
end

View file

@ -0,0 +1,29 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-made-carving" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Made Carving"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-black.otf"
font "font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-bold.otf"
font "font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-extralight.otf"
font "font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-light.otf"
font "font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-medium.otf"
font "font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-regular.otf"
font "font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-semibold.otf"
font "font_files/font-made-carving/otf/madecarvingoutlinepersonaluse-thin.otf"
font "font_files/font-made-carving/otf/madecarvingpersonaluse-black.otf"
font "font_files/font-made-carving/otf/madecarvingpersonaluse-bold.otf"
font "font_files/font-made-carving/otf/madecarvingpersonaluse-extralight.otf"
font "font_files/font-made-carving/otf/madecarvingpersonaluse-light.otf"
font "font_files/font-made-carving/otf/madecarvingpersonaluse-medium.otf"
font "font_files/font-made-carving/otf/madecarvingpersonaluse-regular.otf"
font "font_files/font-made-carving/otf/madecarvingpersonaluse-semibold.otf"
font "font_files/font-made-carving/otf/madecarvingpersonaluse-thin.otf"
end

View file

@ -0,0 +1,18 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-made-infinity" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Made Infinity"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-made-infinity/otf/madeinfinity-personaluse-black.otf"
font "font_files/font-made-infinity/otf/madeinfinity-personaluse-light.otf"
font "font_files/font-made-infinity/otf/madeinfinity-personaluse-medium.otf"
font "font_files/font-made-infinity/otf/madeinfinity-personaluse-regular.otf"
font "font_files/font-made-infinity/otf/madeinfinity-personaluse-thin.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-magic-painted" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Magic Painted"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-magic-painted/otf/magic-painted.otf"
end

16
Casks/font-magnode.rb Normal file
View file

@ -0,0 +1,16 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-magnode" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Magnode"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-magnode/ttf/magnode-trial-version.ttf"
font "font_files/font-magnode/otf/magnode-trial-version.otf"
font "font_files/font-magnode/otf/xkcd.otf"
end

View file

@ -0,0 +1,17 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-marker_notes" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Marker Notes"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-marker_notes/ttf/marker-notes-italic.ttf"
font "font_files/font-marker_notes/ttf/marker-notes.ttf"
font "font_files/font-marker_notes/otf/marker-notes-italic.otf"
font "font_files/font-marker_notes/otf/marker-notes.otf"
end

15
Casks/font-marvelo.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-marvelo" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Marvelo"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-marvelo/ttf/marvelo.ttf"
font "font_files/font-marvelo/otf/marvelo.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF web
cask "font-mba-slice-mono" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Mba Slice Mono"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-mba-slice-mono/otf/mbaslicemono-regular.otf"
end

14
Casks/font-miracode.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-miracode" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Miracode"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-miracode/ttf/font.ttf"
end

15
Casks/font-moon-walk.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-moon-walk" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Moon Walk"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-moon-walk/ttf/moon-walk.ttf"
font "font_files/font-moon-walk/otf/moon-walk.otf"
end

14
Casks/font-morgon.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-morgon" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Morgon"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-morgon/otf/morgon-personaluseonly.otf"
end

17
Casks/font-nafasmanual.rb Normal file
View file

@ -0,0 +1,17 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-nafasmanual" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Nafasmanual"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-nafasmanual/ttf/nafasmanualregular.ttf"
font "font_files/font-nafasmanual/ttf/nafasmanualsliced.ttf"
font "font_files/font-nafasmanual/otf/nafasmanualregular.otf"
font "font_files/font-nafasmanual/otf/nafasmanualsliced.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-neopixel-font-1764372129-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Neopixel Font 1764372129 0"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-neopixel-font-1764372129-0/otf/neopixel-regular.otf"
end

View file

@ -0,0 +1,22 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-new-kansas-black-wisabo" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "New Kansas Black Wisabo"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-.otf"
font "font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-black.otf"
font "font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-bold.otf"
font "font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-heavy.otf"
font "font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-light.otf"
font "font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-medium.otf"
font "font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-semi-bold.otf"
font "font_files/font-new-kansas-black-wisabo/otf/fonnts.com-new-kansas-thin.otf"
font "font_files/font-new-kansas-black-wisabo/otf/new-kansas-black.otf"
end

View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-nugia-vintage" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Nugia Vintage"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-nugia-vintage/ttf/nugiavintage.ttf"
font "font_files/font-nugia-vintage/otf/nugiavintage.otf"
end

15
Casks/font-overland.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-overland" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Overland"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-overland/otf/overland-regular.otf"
font "font_files/font-overland/otf/overland.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-parasite-game" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Parasite Game"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-parasite-game/ttf/parasite-game-personal-use.ttf"
end

View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-patsy-sans-grotesque" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Patsy Sans Grotesque"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-patsy-sans-grotesque/otf/patsysans-italic.otf"
font "font_files/font-patsy-sans-grotesque/otf/patsysans.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-pixel-crash-font-1764372071-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Pixel Crash Font 1764372071 0"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-pixel-crash-font-1764372071-0/otf/pixelcrash-trial.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-pixel-gamer-font-1764372239-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Pixel Gamer Font 1764372239 0"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-pixel-gamer-font-1764372239-0/otf/pixelgamerpersonaluse-rg61l.otf"
end

View file

@ -0,0 +1,217 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-pixel-grid-font-family-1764371982-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Pixel Grid Font Family 1764371982 0"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-pixel-grid-font-family-1764371982-0/ttf/pixelgridtrial-fashionregxl.ttf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleboldm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlebolds.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleboldxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelim.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelis.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlelixl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlemidm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlemids.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenormm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenorms.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlenormxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregs.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circleregxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethinm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethins.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-circlethinxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionboldm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionbolds.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionboldxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlim.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlis.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionlixl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionmidm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionmids.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnormm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnorms.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionnormxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregs.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionregxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionthins.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-fashionthinxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartboldm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartbolds.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartboldxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlim.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlis.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartlixl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartmidm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartmids.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnormm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnorms.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartnormxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregs.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartregxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthinm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthins.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-heartthinxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownboldm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownbolds.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownboldxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlim.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlis.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownlixl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownmidm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownmids.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnormm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnorms.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownnormxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregs.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownregxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthinm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthins.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-linedownthinxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyboldm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskybolds.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyboldxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylim.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylis.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskylixl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskymidm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskymids.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynormm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynorms.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskynormxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregs.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskyregxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythinm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythins.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-lineskythinxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticboldm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticbolds.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticboldxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlim.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlis.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticlixl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticmidm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticmids.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnormm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnorms.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticnormxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregs.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticregxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthinm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthins.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-plasticthinxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointboldm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointbolds.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointboldxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlim.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlis.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointlixl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointmidm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointmids.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnormm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnorms.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointnormxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregs.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointregxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthinm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthins.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-pointthinxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickboldm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickbolds.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickboldxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklim.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklis.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicklixl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickmidm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickmids.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknormm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknorms.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quicknormxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregs.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickregxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthinm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthins.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-quickthinxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowboldm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowbolds.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowboldxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlim.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlis.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowlixl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowmidm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowmids.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownormm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownorms.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadownormxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregs.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowregxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthinm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthins.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-shadowthinxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareboldm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarebolds.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareboldxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squaremidm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squaremids.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenormm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenorms.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarenormxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregs.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squareregxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethinm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethins.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squarethinxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelim.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelis.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-squrelixl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterboldm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterbolds.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterboldxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlim.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlis.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterlixl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-watermidm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-watermids.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternormm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternorms.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waternormxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregs.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterregxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthinm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthins.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-waterthinxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windboldm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windbolds.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windboldxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlim.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlis.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windlixl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windmidm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windmids.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnormm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnorms.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windnormxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregs.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windregxl.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthinm.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthins.otf"
font "font_files/font-pixel-grid-font-family-1764371982-0/otf/pixelgridtrial-windthinxl.otf"
end

15
Casks/font-pixelon.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-pixelon" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Pixelon"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-pixelon/ttf/pixelon-bf663182784222c.ttf"
font "font_files/font-pixelon/otf/pixelon-bf663182783f6a2.otf"
end

17
Casks/font-plaztma.rb Normal file
View file

@ -0,0 +1,17 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-plaztma" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Plaztma"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-plaztma/ttf/plaztma-oblique.ttf"
font "font_files/font-plaztma/ttf/plaztma.ttf"
font "font_files/font-plaztma/otf/plaztma-oblique.otf"
font "font_files/font-plaztma/otf/plaztma.otf"
end

14
Casks/font-plebis.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-plebis" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Plebis"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-plebis/otf/plebis.otf"
end

View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-project-space" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Project Space"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-project-space/ttf/project-space.ttf"
font "font_files/font-project-space/otf/project-space.otf"
end

14
Casks/font-provisions.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-provisions" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Provisions"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-provisions/otf/provisions-freepersonaluseonly.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-qraydom-font-1764371345-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Qraydom Font 1764371345 0"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-qraydom-font-1764371345-0/ttf/Qraydom.ttf"
end

View file

@ -0,0 +1,37 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-quasimoda-family" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Quasimoda Family"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-quasimoda-family/ttf/brother-bold.ttf"
font "font_files/font-quasimoda-family/otf/brother-bold.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black-italic.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-black.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold-italic.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-bold.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold-italic.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extrabold.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight-italic.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-extralight.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline-italic.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-hairline.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy-italic.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-heavy.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-italic.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light-italic.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-light.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium-italic.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-medium.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-regular.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold-italic.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-semibold.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin-italic.otf"
font "font_files/font-quasimoda-family/otf/lettersoup-quasimoda-thin.otf"
end

14
Casks/font-revain.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-revain" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Revain"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-revain/ttf/revain-regular.ttf"
end

15
Casks/font-rigid-light.rb Normal file
View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-rigid-light" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Rigid Light"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-rigid-light/ttf/rigid-display-light.ttf"
font "font_files/font-rigid-light/otf/rigid-display-light.otf"
end

View file

@ -0,0 +1,17 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF web
cask "font-rocky_monkey" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Rocky Monkey"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-rocky_monkey/ttf/rocky-monkey-italic.ttf"
font "font_files/font-rocky_monkey/ttf/rocky-monkey.ttf"
font "font_files/font-rocky_monkey/otf/rocky-monkey-italic.otf"
font "font_files/font-rocky_monkey/otf/rocky-monkey.otf"
end

14
Casks/font-rondack.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-rondack" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Rondack"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-rondack/otf/rondack-personaluseonly.otf"
end

14
Casks/font-runa.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-runa" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Runa"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-runa/otf/runa.otf"
end

View file

@ -0,0 +1,15 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-rusillaserif" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Rusillaserif"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-rusillaserif/otf/rusillaserif-light.otf"
font "font_files/font-rusillaserif/otf/rusillaserif-regular.otf"
end

14
Casks/font-ruska.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-ruska" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Ruska"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-ruska/otf/ruskadisplay-regular.otf"
end

14
Casks/font-scratches.rb Normal file
View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-scratches" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Scratches"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-scratches/otf/scratches.otf"
end

View file

@ -0,0 +1,14 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-scribblingtom" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts/archive/main.tar.gz"
name "Scribblingtom"
homepage "http://clancy.genet-godzilla.ts.net:8085/Fonts/homebrew-fonts"
font "font_files/font-scribblingtom/otf/scribblingtom.otf"
end

Some files were not shown because too many files have changed in this diff Show more