phinze/homebrew-cask

View on GitHub
Casks/e/endnote.rb

Summary

Maintainability
A
0 mins
Test Coverage
cask "endnote" do
  version "21.4.0.20467"
  sha256 :no_check # required as upstream package is updated in-place

  url "https://download.endnote.com/downloads/#{version.major}/EndNote#{version.major}Installer.dmg"
  name "EndNote"
  desc "Reference manager"
  homepage "https://endnote.com/"

  livecheck do
    url "https://download.endnote.com/updates/21.0/EN21MacUpdates.xml"
    strategy :xml do |xml|
      xml.get_elements("//updateTo").map { |item| item.text&.strip }
    end
  end

  container nested: "Install EndNote #{version.major}.app/Contents/Resources/EndNote.zip"

  suite "EndNote"

  zap trash: [
    "/Library/Application Support/ResearchSoft/EndNote",
    "~/Library/Application Support/EndNote",
    "~/Library/Caches/com.ThomsonResearchSoft.EndNote",
    "~/Library/Preferences/com.ThomsonResearchSoft.EndNote.plist",
    "~/Library/Services/ENService.app",
    "~/Library/Spotlight/EndNote.mdimporter",
  ]
end