mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
21 lines
676 B
Ruby
21 lines
676 B
Ruby
cask "texstudio" do
|
|
version "4.7.1"
|
|
sha256 "9b17928e1a32ca58199b425509ba88cbfa59a1c151b74e99599bb519b683e8c6"
|
|
|
|
url "https://github.com/texstudio-org/texstudio/releases/download/#{version}/texstudio-#{version}-osx.dmg",
|
|
verified: "github.com/texstudio-org/texstudio/"
|
|
name "TeXstudio"
|
|
desc "LaTeX editor"
|
|
homepage "https://texstudio.org/"
|
|
|
|
depends_on macos: ">= :big_sur"
|
|
|
|
app "texstudio.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/texstudio.sfl*",
|
|
"~/Library/Preferences/texstudio.plist",
|
|
"~/Library/Saved Application State/texstudio.savedState",
|
|
]
|
|
end
|