homebrew-core/Formula/wait_on.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

18 lines
474 B
Ruby

class WaitOn < Formula
desc "Provides shell scripts with access to kqueue(3)"
homepage "http://www.freshports.org/sysutils/wait_on/"
url "http://distcache.freebsd.org/ports-distfiles/wait_on-1.1.tar.gz"
sha256 "d7f40655f5c11e882890340826d1163050e2748de66b292c15b10d32feb6490f"
depends_on "bsdmake" => :build
def install
system "bsdmake"
bin.install "wait_on"
man1.install "wait_on.1.gz"
end
test do
system "#{bin}/wait_on", "-v"
end
end