blob: 3f4b4fd9bea05e21720d55629dbff75eb1ff5658 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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"
def install
system "make"
bin.install "cliclick"
end
test do
system bin/"cliclick", "p:OK"
end
end
|