Files
homebrew-cask/Casks/t/themeengine.rb
Mike McQuaid aa461148bb Move all remaining casks to sharded subdirectories.
The migration of `orka.rb` and then `o*.rb` has worked well without
complaint so: let's move everything else, too.
2023-08-09 12:08:38 +01:00

24 lines
710 B
Ruby

cask "themeengine" do
version "1.0.0,111"
sha256 "2f7039bf8a30a20da20b292252759a501d15962f909d3b2274db9c2ec7a3bf39"
url "https://github.com/alexzielenski/ThemeEngine/releases/download/#{version.csv.first}(#{version.csv.second})/ThemeEngine_111.zip"
name "ThemeEngine"
desc "App to edit compiled .car files"
homepage "https://github.com/alexzielenski/ThemeEngine/"
livecheck do
url :url
strategy :git do |tags|
tags.map do |tag|
match = tag.match(/^(\d+(?:\.\d+)*)\((\d+)\)$/i)
"#{match[1]},#{match[2]}" if match
end.compact
end
end
app "ThemeEngine.app"
zap trash: "~/Library/Preferences/com.alexzielenski.ThemeEngine.LSSharedFileList.plist"
end