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
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
<<~EOS
Fonts have been installed to:
#{{share}}/fonts/truetype
#{{share}}/fonts/opentype
#{{share}}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{{share}}/fonts/webfonts
#{{share}}/{formula_name}
EOS
end

View file

@ -40,14 +40,24 @@ class FontAbbiescriptproRg < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/abbiescriptpro-rg
EOS
end

View file

@ -40,14 +40,24 @@ class FontAcrylicHand < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/acrylic-hand
EOS
end

View file

@ -40,14 +40,24 @@ class FontAgpx < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/agpx
EOS
end

View file

@ -40,14 +40,24 @@ class FontAirosol < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/airosol
EOS
end

View file

@ -40,14 +40,24 @@ class FontAlphalyrae < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/alphalyrae
EOS
end

View file

@ -40,14 +40,24 @@ class FontAngular < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/angular
EOS
end

View file

@ -40,14 +40,24 @@ class FontArinoe < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/arinoe
EOS
end

View file

@ -40,14 +40,24 @@ class FontAverasanstc < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/averasanstc
EOS
end

View file

@ -40,14 +40,24 @@ class FontBaduy < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/baduy
EOS
end

View file

@ -40,14 +40,24 @@ class FontBeeHoney < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/bee-honey
EOS
end

View file

@ -40,14 +40,24 @@ class FontBenford < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/benford
EOS
end

View file

@ -40,14 +40,24 @@ class FontBobbyJonesSoftFree < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/bobby-jones-soft-free
EOS
end

View file

@ -40,14 +40,24 @@ class FontBouncyCastleFree < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/bouncy_castle_free
EOS
end

View file

@ -40,14 +40,24 @@ class FontBrightsight02 < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/brightsight-02
EOS
end

View file

@ -40,14 +40,24 @@ class FontBrixtonline < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/brixtonline
EOS
end

View file

@ -40,14 +40,24 @@ class FontBroke < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/broke
EOS
end

View file

@ -40,14 +40,24 @@ class FontBuffy < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/buffy
EOS
end

View file

@ -40,14 +40,24 @@ class FontCatOutline < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/cat-outline
EOS
end

View file

@ -40,14 +40,24 @@ class FontCheekyRabbit < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/cheeky-rabbit
EOS
end

View file

@ -40,14 +40,24 @@ class FontChido < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/chido
EOS
end

View file

@ -40,14 +40,24 @@ class FontChristmasPicture < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/christmas-picture
EOS
end

View file

@ -40,14 +40,24 @@ class FontChrone < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/chrone
EOS
end

View file

@ -40,14 +40,24 @@ class FontClancyExperience < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/clancy-experience
EOS
end

View file

@ -40,14 +40,24 @@ class FontClancy < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/clancy
EOS
end

View file

@ -40,14 +40,24 @@ class FontCode < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/code
EOS
end

View file

@ -40,14 +40,24 @@ class FontCoffina < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/coffina
EOS
end

View file

@ -40,14 +40,24 @@ class FontCopixelFont17643720790 < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/copixel-font-1764372079-0
EOS
end

View file

@ -40,14 +40,24 @@ class FontCreamyDreams < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/creamy-dreams
EOS
end

View file

@ -40,14 +40,24 @@ class FontCucurucho < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/cucurucho
EOS
end

View file

@ -40,14 +40,24 @@ class FontDamn < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/damn
EOS
end

View file

@ -40,14 +40,24 @@ class FontDanceBlues < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/dance-blues
EOS
end

View file

@ -40,14 +40,24 @@ class FontDepixel < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/depixel
EOS
end

View file

@ -40,14 +40,24 @@ class FontDepokCubism < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/depok-cubism
EOS
end

View file

@ -40,14 +40,24 @@ class FontDevilsCut < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/devils-cut
EOS
end

View file

@ -40,14 +40,24 @@ class FontDirtyClouds < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/dirty-clouds
EOS
end

View file

@ -40,14 +40,24 @@ class FontDistrict < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/district
EOS
end

View file

@ -40,14 +40,24 @@ class FontDkFrozenMemory < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/dk-frozen-memory
EOS
end

View file

@ -40,14 +40,24 @@ class FontDomaineDisplay < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/domaine-display
EOS
end

View file

@ -40,14 +40,24 @@ class FontDtmilagros < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/dtmilagros
EOS
end

View file

@ -40,14 +40,24 @@ class FontEpBoxi < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/ep-boxi
EOS
end

View file

@ -40,14 +40,24 @@ class FontF37Stout < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/f37-stout
EOS
end

View file

@ -40,14 +40,24 @@ class FontFlyover < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/flyover
EOS
end

View file

@ -40,14 +40,24 @@ class FontFreshChristmasFont17643708880 < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/fresh-christmas-font-1764370888-0
EOS
end

View file

@ -40,14 +40,24 @@ class FontFriem < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/friem
EOS
end

View file

@ -40,14 +40,24 @@ class FontFunkyRound < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/funky-round
EOS
end

View file

@ -40,14 +40,24 @@ class FontFutura1986 < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/futura-1986
EOS
end

View file

@ -40,14 +40,24 @@ class FontGalaxia < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/galaxia
EOS
end

View file

@ -40,14 +40,24 @@ class FontGilbert < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/gilbert
EOS
end

View file

@ -40,14 +40,24 @@ class FontGrahamHand < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/graham_hand
EOS
end

View file

@ -40,14 +40,24 @@ class FontGyanko < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/gyanko
EOS
end

View file

@ -40,14 +40,24 @@ class FontHectra < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/hectra
EOS
end

View file

@ -40,14 +40,24 @@ class FontHelloHeadline < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/hello-headline
EOS
end

View file

@ -40,14 +40,24 @@ class FontHorseland < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/horseland
EOS
end

View file

@ -40,14 +40,24 @@ class FontIdgrotesk < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/idgrotesk
EOS
end

View file

@ -40,14 +40,24 @@ class FontIntrovertFont217643716550 < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/introvert-font-2-1764371655-0
EOS
end

View file

@ -40,14 +40,24 @@ class FontJimmySans < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/jimmy-sans
EOS
end

View file

@ -40,14 +40,24 @@ class FontJoc < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/joc
EOS
end

View file

@ -40,14 +40,24 @@ class FontKompeni < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/kompeni
EOS
end

View file

@ -40,14 +40,24 @@ class FontLabGrotesk < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/lab-grotesk
EOS
end

View file

@ -40,14 +40,24 @@ class FontLanceTomchalky < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/lance-tomchalky
EOS
end

View file

@ -40,14 +40,24 @@ class FontLatcha < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/latcha
EOS
end

View file

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

View file

@ -40,14 +40,24 @@ class FontLexa < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/lexa
EOS
end

View file

@ -40,14 +40,24 @@ class FontMadeCarving < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/made-carving
EOS
end

View file

@ -40,14 +40,24 @@ class FontMadeInfinity < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/made-infinity
EOS
end

View file

@ -40,14 +40,24 @@ class FontMagicPainted < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/magic-painted
EOS
end

View file

@ -40,14 +40,24 @@ class FontMagnode < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/magnode
EOS
end

View file

@ -40,14 +40,24 @@ class FontMarkerNotes < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/marker_notes
EOS
end

View file

@ -40,14 +40,24 @@ class FontMarvelo < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/marvelo
EOS
end

View file

@ -40,14 +40,24 @@ class FontMbaSliceMono < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/mba-slice-mono
EOS
end

View file

@ -40,14 +40,24 @@ class FontMiracode < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/miracode
EOS
end

View file

@ -40,14 +40,24 @@ class FontMoonWalk < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/moon-walk
EOS
end

View file

@ -40,14 +40,24 @@ class FontMorgon < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/morgon
EOS
end

View file

@ -40,14 +40,24 @@ class FontNafasmanual < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/nafasmanual
EOS
end

View file

@ -40,14 +40,24 @@ class FontNeopixelFont17643721290 < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/neopixel-font-1764372129-0
EOS
end

View file

@ -40,14 +40,24 @@ class FontNewKansasBlackWisabo < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/new-kansas-black-wisabo
EOS
end

View file

@ -40,14 +40,24 @@ class FontNugiaVintage < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/nugia-vintage
EOS
end

View file

@ -40,14 +40,24 @@ class FontOverland < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/overland
EOS
end

View file

@ -40,14 +40,24 @@ class FontParasiteGame < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/parasite-game
EOS
end

View file

@ -40,14 +40,24 @@ class FontPatsySansGrotesque < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/patsy-sans-grotesque
EOS
end

View file

@ -40,14 +40,24 @@ class FontPixelCrashFont17643720710 < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/pixel-crash-font-1764372071-0
EOS
end

View file

@ -40,14 +40,24 @@ class FontPixelGamerFont17643722390 < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/pixel-gamer-font-1764372239-0
EOS
end

View file

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

View file

@ -40,14 +40,24 @@ class FontPixelon < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/pixelon
EOS
end

View file

@ -40,14 +40,24 @@ class FontPlaztma < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/plaztma
EOS
end

View file

@ -40,14 +40,24 @@ class FontPlebis < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/plebis
EOS
end

View file

@ -40,14 +40,24 @@ class FontProjectSpace < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/project-space
EOS
end

View file

@ -40,14 +40,24 @@ class FontProvisions < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/provisions
EOS
end

View file

@ -40,14 +40,24 @@ class FontQraydomFont17643713450 < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/qraydom-font-1764371345-0
EOS
end

View file

@ -40,14 +40,24 @@ class FontQuasimodaFamily < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/quasimoda-family
EOS
end

View file

@ -40,14 +40,24 @@ class FontRevain < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/revain
EOS
end

View file

@ -40,14 +40,24 @@ class FontRigidLight < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/rigid-light
EOS
end

View file

@ -40,14 +40,24 @@ class FontRockyMonkey < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/rocky_monkey
EOS
end

View file

@ -40,14 +40,24 @@ class FontRondack < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/rondack
EOS
end

View file

@ -40,14 +40,24 @@ class FontRuna < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/runa
EOS
end

View file

@ -40,14 +40,24 @@ class FontRusillaserif < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/rusillaserif
EOS
end

View file

@ -40,14 +40,24 @@ class FontRuska < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/ruska
EOS
end

View file

@ -40,14 +40,24 @@ class FontScratches < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/scratches
EOS
end

View file

@ -40,14 +40,24 @@ class FontScribblingtom < Formula
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
<<~EOS
Fonts have been installed to:
#{share}/fonts/truetype
#{share}/fonts/opentype
#{share}/fonts/webfonts
Fonts have been copied to ~/Library/Fonts/ and should appear in Font Book.
Additional files are available in:
Web fonts and other files are available in:
#{share}/fonts/webfonts
#{share}/scribblingtom
EOS
end

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