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

class Cliclick < Formula
  homepage "http://www.bluem.net/jump/cliclick/"
  url "https://github.com/BlueM/cliclick/archive/2.4.tar.gz"
  sha1 "69dd1bc99d110a18fd4cc087b8180592c798a783"

  depends_on :xcode

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

  test do
    system bin/"cliclick", "p:OK"
  end
end