24 lines
625 B
Ruby
24 lines
625 B
Ruby
cask "desktoputility" do
|
|
version "5.2"
|
|
sha256 :no_check
|
|
|
|
url "https://sweetpproductions.com/products/desktoputility/DesktopUtility.dmg"
|
|
name "DesktopUtility"
|
|
desc "Quick access to useful system tasks"
|
|
homepage "https://sweetpproductions.com/"
|
|
|
|
livecheck do
|
|
url "https://sweetpproductions.com/products/desktoputility/updates.htm"
|
|
regex(/<h\d+>\s*(\d+(?:\.\d+)+)\s*</i)
|
|
end
|
|
|
|
depends_on macos: ">= :el_capitan"
|
|
|
|
app "DesktopUtility.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/com.sweetpproductions.DesktopUtility",
|
|
"~/Library/Containers/com.sweetpproductions.DesktopUtility",
|
|
]
|
|
end
|