38 lines
1.5 KiB
Ruby
38 lines
1.5 KiB
Ruby
cask "xattred" do
|
|
version "1.5,2023.05"
|
|
sha256 "044fdd02921e867a4dd78b3979c55d8efacbd526ea4fcc5bc560523d58bc66b6"
|
|
|
|
url "https://eclecticlightdotcom.files.wordpress.com/#{version.csv.second.major}/#{version.csv.second.minor}/xattred#{version.csv.first.no_dots}.zip",
|
|
verified: "eclecticlightdotcom.files.wordpress.com/"
|
|
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&.strip
|
|
match = item.elements["key[text()='URL']"]&.next_element&.text&.strip&.match(regex)
|
|
next if version.blank? || match.blank?
|
|
|
|
"#{version},#{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
|