32 lines
925 B
Ruby
32 lines
925 B
Ruby
cask "akiflow" do
|
|
version "2.42.15,4c3aa25b"
|
|
sha256 "1f9c5d1e4406c89af4546fc1761ddeb3c7f412ea66c928a275c8edda6f6347de"
|
|
|
|
url "https://download.akiflow.com/builds/Akiflow-#{version.csv.first}-#{version.csv.second}-universal.dmg"
|
|
name "Akiflow"
|
|
desc "Time blocking and productivity platform"
|
|
homepage "https://akiflow.com/"
|
|
|
|
livecheck do
|
|
url "https://akiflow.com/download/latest"
|
|
regex(/Akiflow[._-](\d+(?:\.\d+)+)[._-](\h+)[._-]universal\.dmg/i)
|
|
strategy :header_match do |headers, regex|
|
|
match = headers["location"]&.match(regex)
|
|
next if match.blank?
|
|
|
|
"#{match[1]},#{match[2]}"
|
|
end
|
|
end
|
|
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "Akiflow.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Akiflow",
|
|
"~/Library/Preferences/Akiflow",
|
|
"~/Library/Preferences/com.akiflow.akiflow.plist",
|
|
"~/Library/Saved Application State/com.akiflow.akiflow.savedState",
|
|
]
|
|
end
|