Add post_install to copy fonts to ~/Library/Fonts/

Fonts now appear in Font Book automatically after brew install.
The post_install hook copies TTF and OTF files to ~/Library/Fonts/.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matt Troutman 2026-03-07 21:30:48 -06:00
parent 4273745a9e
commit 7cfc7f51d2
No known key found for this signature in database
134 changed files with 2010 additions and 670 deletions

View file

@ -116,14 +116,24 @@ class Font{class_name} < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{{share}}/fonts/truetype
#{{share}}/fonts/opentype
#{{share}}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{{share}}/fonts/webfonts
#{{share}}/{formula_name} #{{share}}/{formula_name}
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontAbbiescriptproRg < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/abbiescriptpro-rg #{share}/abbiescriptpro-rg
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontAcrylicHand < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/acrylic-hand #{share}/acrylic-hand
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontAgpx < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/agpx #{share}/agpx
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontAirosol < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/airosol #{share}/airosol
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontAlphalyrae < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/alphalyrae #{share}/alphalyrae
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontAngular < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/angular #{share}/angular
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontArinoe < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/arinoe #{share}/arinoe
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontAverasanstc < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/averasanstc #{share}/averasanstc
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontBaduy < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/baduy #{share}/baduy
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontBeeHoney < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/bee-honey #{share}/bee-honey
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontBenford < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/benford #{share}/benford
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontBobbyJonesSoftFree < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/bobby-jones-soft-free #{share}/bobby-jones-soft-free
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontBouncyCastleFree < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/bouncy_castle_free #{share}/bouncy_castle_free
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontBrightsight02 < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/brightsight-02 #{share}/brightsight-02
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontBrixtonline < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/brixtonline #{share}/brixtonline
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontBroke < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/broke #{share}/broke
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontBuffy < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/buffy #{share}/buffy
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontCatOutline < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/cat-outline #{share}/cat-outline
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontCheekyRabbit < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/cheeky-rabbit #{share}/cheeky-rabbit
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontChido < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/chido #{share}/chido
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontChristmasPicture < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/christmas-picture #{share}/christmas-picture
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontChrone < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/chrone #{share}/chrone
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontClancyExperience < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/clancy-experience #{share}/clancy-experience
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontClancy < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/clancy #{share}/clancy
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontCode < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/code #{share}/code
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontCoffina < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/coffina #{share}/coffina
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontCopixelFont17643720790 < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/copixel-font-1764372079-0 #{share}/copixel-font-1764372079-0
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontCreamyDreams < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/creamy-dreams #{share}/creamy-dreams
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontCucurucho < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/cucurucho #{share}/cucurucho
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontDamn < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/damn #{share}/damn
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontDanceBlues < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/dance-blues #{share}/dance-blues
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontDepixel < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/depixel #{share}/depixel
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontDepokCubism < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/depok-cubism #{share}/depok-cubism
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontDevilsCut < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/devils-cut #{share}/devils-cut
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontDirtyClouds < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/dirty-clouds #{share}/dirty-clouds
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontDistrict < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/district #{share}/district
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontDkFrozenMemory < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/dk-frozen-memory #{share}/dk-frozen-memory
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontDomaineDisplay < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/domaine-display #{share}/domaine-display
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontDtmilagros < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/dtmilagros #{share}/dtmilagros
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontEpBoxi < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/ep-boxi #{share}/ep-boxi
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontF37Stout < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/f37-stout #{share}/f37-stout
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontFlyover < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/flyover #{share}/flyover
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontFreshChristmasFont17643708880 < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/fresh-christmas-font-1764370888-0 #{share}/fresh-christmas-font-1764370888-0
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontFriem < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/friem #{share}/friem
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontFunkyRound < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/funky-round #{share}/funky-round
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontFutura1986 < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/futura-1986 #{share}/futura-1986
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontGalaxia < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/galaxia #{share}/galaxia
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontGilbert < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/gilbert #{share}/gilbert
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontGrahamHand < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/graham_hand #{share}/graham_hand
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontGyanko < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/gyanko #{share}/gyanko
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontHectra < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/hectra #{share}/hectra
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontHelloHeadline < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/hello-headline #{share}/hello-headline
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontHorseland < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/horseland #{share}/horseland
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontIdgrotesk < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/idgrotesk #{share}/idgrotesk
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontIntrovertFont217643716550 < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/introvert-font-2-1764371655-0 #{share}/introvert-font-2-1764371655-0
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontJimmySans < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/jimmy-sans #{share}/jimmy-sans
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontJoc < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/joc #{share}/joc
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontKompeni < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/kompeni #{share}/kompeni
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontLabGrotesk < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/lab-grotesk #{share}/lab-grotesk
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontLanceTomchalky < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/lance-tomchalky #{share}/lance-tomchalky
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontLatcha < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/latcha #{share}/latcha
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontLazareGroteskFontFamily17643703980 < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/lazare-grotesk-font-family-1764370398-0 #{share}/lazare-grotesk-font-family-1764370398-0
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontLexa < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/lexa #{share}/lexa
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontMadeCarving < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/made-carving #{share}/made-carving
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontMadeInfinity < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/made-infinity #{share}/made-infinity
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontMagicPainted < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/magic-painted #{share}/magic-painted
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontMagnode < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/magnode #{share}/magnode
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontMarkerNotes < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/marker_notes #{share}/marker_notes
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontMarvelo < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/marvelo #{share}/marvelo
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontMbaSliceMono < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/mba-slice-mono #{share}/mba-slice-mono
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontMiracode < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/miracode #{share}/miracode
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontMoonWalk < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/moon-walk #{share}/moon-walk
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontMorgon < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/morgon #{share}/morgon
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontNafasmanual < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/nafasmanual #{share}/nafasmanual
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontNeopixelFont17643721290 < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/neopixel-font-1764372129-0 #{share}/neopixel-font-1764372129-0
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontNewKansasBlackWisabo < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/new-kansas-black-wisabo #{share}/new-kansas-black-wisabo
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontNugiaVintage < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/nugia-vintage #{share}/nugia-vintage
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontOverland < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/overland #{share}/overland
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontParasiteGame < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/parasite-game #{share}/parasite-game
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontPatsySansGrotesque < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/patsy-sans-grotesque #{share}/patsy-sans-grotesque
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontPixelCrashFont17643720710 < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/pixel-crash-font-1764372071-0 #{share}/pixel-crash-font-1764372071-0
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontPixelGamerFont17643722390 < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/pixel-gamer-font-1764372239-0 #{share}/pixel-gamer-font-1764372239-0
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontPixelGridFontFamily17643719820 < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/pixel-grid-font-family-1764371982-0 #{share}/pixel-grid-font-family-1764371982-0
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontPixelon < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/pixelon #{share}/pixelon
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontPlaztma < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/plaztma #{share}/plaztma
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontPlebis < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/plebis #{share}/plebis
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontProjectSpace < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/project-space #{share}/project-space
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontProvisions < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/provisions #{share}/provisions
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontQraydomFont17643713450 < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/qraydom-font-1764371345-0 #{share}/qraydom-font-1764371345-0
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontQuasimodaFamily < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/quasimoda-family #{share}/quasimoda-family
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontRevain < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/revain #{share}/revain
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontRigidLight < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/rigid-light #{share}/rigid-light
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontRockyMonkey < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/rocky_monkey #{share}/rocky_monkey
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontRondack < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/rondack #{share}/rondack
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontRuna < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/runa #{share}/runa
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontRusillaserif < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/rusillaserif #{share}/rusillaserif
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontRuska < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/ruska #{share}/ruska
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontScratches < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/scratches #{share}/scratches
EOS EOS
end end

View file

@ -40,14 +40,24 @@ class FontScribblingtom < Formula
end end
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|
cp f, user_fonts
end
Dir.glob(share/"fonts/opentype/*.otf").each do |f|
cp f, user_fonts
end
end
def caveats def caveats
<<~EOS <<~EOS
Fonts have been installed to: Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Additional files are available in: Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/scribblingtom #{share}/scribblingtom
EOS EOS
end end

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