Files
2023-10-17 11:34:04 -04:00

30 lines
915 B
Ruby

cask "endnote" do
version "21.2.0.19537"
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(&:text)
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