aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/kqwait.rb
blob: c1f53f3a58a51790fe479d2c245a1c9fff73ecbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Kqwait < Formula
  homepage 'https://github.com/sschober/kqwait'
  url 'https://github.com/sschober/kqwait/archive/kqwait-v1.0.3.tar.gz'
  sha1 '47d12184dc67b7d16ca2895c0ce0de5937fa20cb'

  head 'https://github.com/sschober/kqwait.git'

  def install
    system "make"
    bin.install "kqwait"
  end

  test do
    system "#{bin}/kqwait", "-v"
  end
end