mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
31 lines
961 B
Ruby
31 lines
961 B
Ruby
cask "bookmacster" do
|
|
version "3.0.12"
|
|
sha256 "0b79ed601d82648ce212166e7cda278d54a1914058ed81ad465bd47a8d47f485"
|
|
|
|
url "https://sheepsystems.com/bookmacster/BookMacster_#{version}.zip"
|
|
name "BookMacster"
|
|
desc "Bookmarks manager"
|
|
homepage "https://sheepsystems.com/products/bookmacster.html"
|
|
|
|
# Older items in the Sparkle feed may have a newer pubDate, so it's necessary
|
|
# to work with all of the items in the feed (not just the newest one).
|
|
livecheck do
|
|
url "https://sheepsystems.com/bookmacster/appcast.xml"
|
|
strategy :sparkle do |items|
|
|
items.map(&:short_version)
|
|
end
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :big_sur"
|
|
|
|
app "BookMacster.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/BookMacster",
|
|
"~/Library/Caches/com.sheepsystems.BookMacster",
|
|
"~/Library/Preferences/com.sheepsystems.BookMacster.plist",
|
|
"~/Library/Saved Application State/com.sheepsystems.BookMacster.savedState",
|
|
]
|
|
end
|