phinze/homebrew-cask

View on GitHub
Casks/f/folx.rb

Summary

Maintainability
A
0 mins
Test Coverage
cask "folx" do
  version "5.27"
  sha256 :no_check

  url "https://cdn.electronic.us/products/folx/mac/download/downloader_mac.dmg",
      verified: "cdn.electronic.us/products/folx/"
  name "Folx"
  desc "Download manager with a torrent client"
  homepage "https://mac.eltima.com/download-manager.html"

  livecheck do
    url "https://cdn.electronic.us/products/folx/mac/update/settings.xml"
    strategy :sparkle, &:short_version
  end

  auto_updates true
  depends_on macos: ">= :sierra"

  app "Folx.app"

  zap trash: [
    "~/Library/Application Scripts/com.eltima.Folx3.FolxSafariExtension",
    "~/Library/Application Support/Eltima Software/Folx3",
    "~/Library/Application Support/Folx",
    "~/Library/Application Support/Google/Chrome/NativeMessagingHosts/com.eltima.folx.host.json",
    "~/Library/Application Support/Mozilla/NativeMessagingHosts/com.eltima.folx.host.json",
    "~/Library/Caches/com.eltima.Folx3",
    "~/Library/Containers/com.eltima.Folx3.FolxSafariExtension",
    "~/Library/HTTPStorages/com.eltima.Folx3",
    "~/Library/Internet Plug-Ins/Folx3Plugin.plugin",
    "~/Library/Logs/Folx.log",
    "~/Library/Logs/Folx3.log",
    "~/Library/Preferences/com.eltima.Folx3.plist",
    "~/Library/Preferences/com.eltima.FolxAgent.plist",
    "~/Library/Saved Application State/com.eltima.Folx3.savedState",
  ]

  caveats do
    requires_rosetta
  end
end