cask "akiflow" do version "2.45.20,fca6f7fc" sha256 "0a4a63312cc5104553554580df9c84b0b1cdb3623a0a36c8128924e2099d4b6a" 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