homebrew-cask/Casks/s/smartgit.rb

40 lines
1.2 KiB
Ruby

cask "smartgit" do
arch arm: "aarch64", intel: "x86_64"
on_sierra :or_older do
version "20.2.6"
sha256 "af5fbf8db26edde3d996d99c6e82287332598359fe63ff2cd97c712a1685a2ea"
url "https://www.syntevo.com/downloads/smartgit/smartgit-macosx-#{version.dots_to_underscores}.dmg"
end
on_high_sierra :or_newer do
version "22.1.7"
sha256 arm: "264e9ef1bcdeb5497fcb7e6f55d22986b1f9ec9798ae32e7465a906bc061ceb1",
intel: "d99acc0056d0381ca21f71601663f2d4acc2ab4d03423b341ada9a4c7bb7a15d"
url "https://www.syntevo.com/downloads/smartgit/smartgit-#{arch}-#{version.dots_to_underscores}.dmg"
end
name "SmartGit"
desc "Git client"
homepage "https://www.syntevo.com/smartgit/"
livecheck do
url "https://www.syntevo.com/smartgit/download/"
regex(/href=.*?smartgit[._-]#{arch}[._-]v?(\d+(?:[._]\d+)+)\.dmg/i)
strategy :page_match do |page, regex|
page.scan(regex)
.map { |match| match[0].tr("_", ".") }
end
end
app "SmartGit.app"
binary "#{appdir}/SmartGit.app/Contents/MacOS/SmartGit"
zap trash: [
"~/Library/Preferences/SmartGit",
"~/Library/Preferences/com.syntevo.smartgit.plist",
"~/Library/Saved Application State/com.syntevo.smartgit.savedState",
]
end