homebrew-cask/Casks/v/vimr.rb

36 lines
1.0 KiB
Ruby

cask "vimr" do
version "0.46.0,20240102.233758"
sha256 "fa0acda996037990c70cdd36f7fdea3ba25078f07198385d8504de7a923fcbf6"
url "https://github.com/qvacua/vimr/releases/download/v#{version.csv.first}-#{version.csv.second}/VimR-v#{version.csv.first}.tar.bz2",
verified: "github.com/qvacua/vimr/"
name "VimR"
desc "GUI for the Neovim text editor"
homepage "http://vimr.org/"
livecheck do
url :url
regex(/^v?(\d+(?:\.\d+)+)[._-](\d+(?:\.\d+)+)$/i)
strategy :github_latest do |json, regex|
match = json["tag_name"]&.match(regex)
next if match.blank?
"#{match[1]},#{match[2]}"
end
end
auto_updates true
depends_on macos: ">= :monterey"
app "VimR.app"
binary "#{appdir}/VimR.app/Contents/Resources/vimr"
zap trash: [
"~/Library/Caches/com.qvacua.VimR",
"~/Library/Preferences/com.qvacua.VimR.menuitems.plist",
"~/Library/Preferences/com.qvacua.VimR.plist",
"~/Library/Saved Application State/com.qvacua.VimR.savedState",
"~/Library/WebKit/com.qvacua.VimR",
]
end