Skip to content

Commit

Permalink
font-3270: migrate from homebrew-cask-fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
bevanjkay committed May 15, 2024
1 parent 20a982b commit 04165b0
Showing 1 changed file with 31 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

0 comments on commit 04165b0

Please sign in to comment.