cask "xattred" do version "1.6,2025.06" sha256 "2347bc6a945f44c5c6da1857f334aa4e18943d83b1da8c41693756c2302b5c0e" url "https://eclecticlight.co/wp-content/uploads/#{version.csv.second.major}/#{version.csv.second.minor}/xattred#{version.csv.first.no_dots}.zip" name "xattred" desc "Extended attribute editor" homepage "https://eclecticlight.co/xattred-sandstrip-xattr-tools/" livecheck do url "https://raw.githubusercontent.com/hoakleyelc/updates/master/eclecticapps.plist" regex(%r{/(\d+)/(\d+)/[^/]+?$}i) strategy :xml do |xml, regex| item = xml.elements["//dict[key[text()='AppName']/following-sibling::*[1][text()='xattred']]"] next unless item version = item.elements["key[text()='Version']"]&.next_element&.text url = item.elements["key[text()='URL']"]&.next_element&.text match = url.strip.match(regex) if url next if version.blank? || match.blank? "#{version.strip},#{match[1]}.#{match[2]}" end end depends_on macos: ">= :high_sierra" app "xattred#{version.csv.first.major}#{version.csv.first.minor}/xattred.app" zap trash: [ "~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/co.eclecticlight.xattred.sfl*", "~/Library/Caches/co.eclecticlight.xattred", "~/Library/HTTPStorages/co.eclecticlight.xattred", "~/Library/Preferences/co.eclecticlight.xattred.plist", "~/Library/Saved Application State/co.eclecticlight.xattred.savedState", ] end