22 lines
583 B
Ruby
22 lines
583 B
Ruby
class Dockutil < Formula
|
|
desc "Tool for managing dock items"
|
|
homepage "https://github.com/kcrawford/dockutil"
|
|
url "https://github.com/kcrawford/dockutil/archive/2.0.5.tar.gz"
|
|
sha256 "6dbbc1467caaab977bf4c9f2d106ceadfedd954b6a4848c54c925aff81159a65"
|
|
license "Apache-2.0"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "f5f87d9e286c2b294bb157ac9f87baa2720fff044c7a92c0b80b9cb82db8a87e"
|
|
end
|
|
|
|
depends_on :macos
|
|
|
|
def install
|
|
bin.install "scripts/dockutil"
|
|
end
|
|
|
|
test do
|
|
assert_match version.to_s, shell_output("#{bin}/dockutil --version")
|
|
end
|
|
end
|