mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
19 lines
426 B
Ruby
19 lines
426 B
Ruby
cask "smoothscroll" do
|
|
version "1.6.0"
|
|
sha256 :no_check
|
|
|
|
url "https://www.smoothscroll.net/mac/download/SmoothScroll.app.zip"
|
|
name "SmoothScroll"
|
|
desc "Smooth mouse scrolling utility"
|
|
homepage "https://www.smoothscroll.net/"
|
|
|
|
livecheck do
|
|
url "https://updater.smoothscroll.net/mac/updater.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "SmoothScroll.app"
|
|
end
|