mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
776 B
Ruby
27 lines
776 B
Ruby
cask "icollections" do
|
|
version "8.3.2"
|
|
sha256 :no_check
|
|
|
|
url "https://naarakstudio.com/download/iCollections.dmg"
|
|
name "iCollections"
|
|
desc "App to help keep the desktop organized"
|
|
homepage "https://naarakstudio.com/icollections/"
|
|
|
|
livecheck do
|
|
url "https://naarakstudio.com/download/icollections/update.ver"
|
|
strategy :page_match do |page|
|
|
page.split(":").first[0..2].chars.join(".")
|
|
end
|
|
end
|
|
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "iCollections.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.naarak.collections.sfl*",
|
|
"~/Library/Application Support/com.naarak.Collections",
|
|
"~/Library/Preferences/com.naarak.Collections.plist",
|
|
]
|
|
end
|