aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cliclick.rb
blob: 3c4feb7fed8f980a195a9e1d813868d491dda51f (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.3.1.tar.gz'
  sha1 '84ae09fb8e40ffada80d81713dcfae05a80b4c7e'

  depends_on :xcode

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

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