Files
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

25 lines
719 B
Ruby

cask "vu" do
version "1.2,6,1523016199"
sha256 "a51884117a8e33339429a93a84c70eb82db46dc50ebe827ab7b7c9a0c6ced313"
url "https://dl.devmate.com/com.boriskarulin.vu/#{version.csv.second}/#{version.csv.third}/vu-#{version.csv.second}.dmg",
verified: "dl.devmate.com/com.boriskarulin.vu/"
name "vu"
desc "Instagram client"
homepage "https://datastills.com/vu/"
livecheck do
url "https://updates.devmate.com/com.boriskarulin.vu.xml"
regex(%r{/(\d+)/vu-(\d+(?:\.\d+)*)\.dmg}i)
strategy :sparkle do |item, regex|
item.url.scan(regex).map do |match|
"#{item.short_version},#{item.version},#{match[0]}"
end
end
end
depends_on macos: ">= :sierra"
app "vu.app"
end