phinze/homebrew-cask

View on GitHub
Casks/d/dropshare.rb

Summary

Maintainability
A
0 mins
Test Coverage
cask "dropshare" do
  version "5.53,5678"
  sha256 "1e4b6258a4f65669f052b46dcc17676e68f36dd26fa004c55df4349ea4a08349"

  url "https://d2wvuuix8c9e48.cloudfront.net/Dropshare#{version.major}-#{version.csv.second}.app.zip",
      verified: "d2wvuuix8c9e48.cloudfront.net/"
  name "Dropshare"
  desc "File sharing solution"
  homepage "https://dropshare.app/"

  livecheck do
    url "https://dropshare.app/sparkle/Dropshare#{version.major}.xml"
    strategy :sparkle do |item|
      "#{item.title[/(\d+(?:\.\d+)+)/i, 1]},#{item.version}"
    end
  end

  depends_on macos: ">= :monterey"

  app "Dropshare #{version.major}.app"
  binary "#{appdir}/Dropshare #{version.major}.app/Contents/Resources/ds.sh", target: "ds"

  zap trash: [
    "~/Library/Application Support/Dropshare #{version.major}",
    "~/Library/Caches/net.mkswap.Dropshare#{version.major}",
    "~/Library/Cookies/net.mkswap.Dropshare#{version.major}.binarycookies",
    "~/Library/Logs/Dropshare #{version.major}",
    "~/Library/Preferences/net.mkswap.Dropshare#{version.major}.plist",
  ]
end