Skip to content

Commit

Permalink
Merge pull request #173815 from Homebrew/font-migrate-numbers
Browse files Browse the repository at this point in the history
font-[0-9]: migrate from `homebrew-cask-fonts`
  • Loading branch information
miccal authored May 15, 2024
2 parents 1ba716c + dc5262e commit 5eee9f3
Show file tree
Hide file tree
Showing 2 changed files with 1,059 additions and 0 deletions.
31 changes: 31 additions & 0 deletions Casks/font/font-3/font-3270.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
cask "font-3270" do
version "3.0.1,d916271"
sha256 "623fb815b16d6c4940b5014a21c5474ef6cddb02c325d03f153341b676b4cffa"

url "https://github.com/rbanffy/3270font/releases/download/v#{version.csv.first}/3270_fonts_#{version.csv.second}.zip"
name "IBM 3270"
desc "Derived from the x3270 font"
homepage "https://github.com/rbanffy/3270font"

livecheck do
url "https://github.com/rbanffy/3270font/releases/latest"
regex(%r{v?(\d+(?:\.\d+)+)/3270[._-]fonts[._-](.*)\.zip}i)
strategy :github_releases do |json, regex|
json.first["assets"].map do |asset|
match = asset["browser_download_url"].match(regex)
next if match.blank?

"#{match[1]},#{match[2]}"
end
end
end

font "3270-Regular.otf"
font "3270-Regular.ttf"
font "3270Condensed-Regular.otf"
font "3270Condensed-Regular.ttf"
font "3270SemiCondensed-Regular.otf"
font "3270SemiCondensed-Regular.ttf"

# No zap stanza required
end
Loading

0 comments on commit 5eee9f3

Please sign in to comment.