2013-09-03 00:22:30 +00:00
|
|
|
class Kqwait < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Wait for events on files or directories on OS X"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://github.com/sschober/kqwait"
|
|
|
|
url "https://github.com/sschober/kqwait/archive/kqwait-v1.0.3.tar.gz"
|
|
|
|
sha256 "878560936d473f203c0ccb3d42eadccfb50cff15e6f15a59061e73704474c531"
|
2013-09-03 00:22:30 +00:00
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
head "https://github.com/sschober/kqwait.git"
|
2013-09-03 00:22:30 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
bin.install "kqwait"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/kqwait", "-v"
|
|
|
|
end
|
|
|
|
end
|