mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
31 lines
805 B
Ruby
31 lines
805 B
Ruby
cask "clock-bar" do
|
|
version "1.0,1801968"
|
|
sha256 "88d1ee551f2edbe25e12098dbdbb2edc5f29e21cd52095e5ea275667a4cbffd1"
|
|
|
|
url "https://github.com/nihalsharma/Clock-Bar/files/#{version.csv.second}/Clock.Bar.app.zip"
|
|
name "Clock Bar"
|
|
desc "Macbook | Clock, right on the touch bar"
|
|
homepage "https://github.com/nihalsharma/Clock-Bar/"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
strategy :github_latest do |json, regex|
|
|
v = json["tag_name"][regex, 1]
|
|
id = json["body"][%r{/(\d+)/Clock\.Bar\.app\.zip}i, 1]
|
|
next if v.blank? || id.blank?
|
|
|
|
"#{v},#{id}"
|
|
end
|
|
end
|
|
|
|
depends_on macos: ">= :sierra"
|
|
|
|
app "Clock Bar.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/nihalsharma.clock-bar",
|
|
"~/Library/Containers/nihalsharma.clock-bar",
|
|
]
|
|
end
|