2013-12-08 17:53:22 +00:00
|
|
|
class Dockutil < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Tool for managing dock items"
|
2013-12-08 17:53:22 +00:00
|
|
|
homepage "https://github.com/kcrawford/dockutil"
|
2014-10-31 23:51:00 +00:00
|
|
|
url "https://github.com/kcrawford/dockutil/archive/2.0.2.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "7d7a546adb825b0fba3f13d2dfc0cc08f2f3f6935c8bfa05c396bcc6e5df56b3"
|
2013-12-08 17:53:22 +00:00
|
|
|
|
2015-10-23 10:51:14 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2013-12-08 17:53:22 +00:00
|
|
|
def install
|
|
|
|
bin.install "scripts/dockutil"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2015-10-06 03:09:35 +00:00
|
|
|
assert_match version.to_s, shell_output("#{bin}/dockutil --version")
|
2013-12-08 17:53:22 +00:00
|
|
|
end
|
|
|
|
end
|