cask "banking-4" do
  # NOTE: "4" is not a version number, but an intrinsic part of the product name
  version "9.2.8,9643"
  sha256 :no_check

  url "https://subsembly.com/download/MacBanking4.pkg",
      verified: "subsembly.com/"
  name "Banking 4"
  desc "German accounting software"
  homepage "https://banking4.de/index.html"

  livecheck do
    url "https://subsembly.com/banking4-macos-updates.php"
    regex(/<h\d[^>]*>\s*(\d+(?:\.\d+)+)\.(\d{3,})/i)
    strategy :page_match do |page, regex|
      page.scan(regex)
          .map { |match| "#{match[0]},#{match[1]}" }
    end
  end

  auto_updates true
  depends_on macos: :monterey

  pkg "MacBanking4.pkg"

  uninstall pkgutil: "com.subsembly.Banking4"

  zap trash: [
    "~/Library/Group Containers/*.com.Subsembly.Banking4XData",
    "~/Library/Preferences/com.subsembly.Banking4.plist",
  ]
end
