mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
801 B
Ruby
27 lines
801 B
Ruby
cask "typeface" do
|
|
version "3.11.1,3976"
|
|
sha256 "c5d973c189ae1424a43b5f049b7909035d738daad3b952196386d41810982f33"
|
|
|
|
url "https://dcdn.typefaceapp.com/Typeface-#{version.csv.first}-#{version.csv.second}/Typeface-#{version.csv.first}-#{version.csv.second}.dmg"
|
|
name "Typeface"
|
|
desc "Font manager application"
|
|
homepage "https://typefaceapp.com/"
|
|
|
|
livecheck do
|
|
url "https://dcdn.typefaceapp.com/appcast.xml"
|
|
strategy :sparkle
|
|
end
|
|
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "Typeface.app"
|
|
|
|
uninstall quit: "com.criminalbird.typeface.standalone"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/com.criminalbird.typeface.standalone",
|
|
"~/Library/Containers/com.criminalbird.typeface.standalone",
|
|
"~/Library/Preferences/com.criminalbird.typeface.standalone.plist",
|
|
]
|
|
end
|