aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorCarsten Blüm2013-11-03 17:40:26 +0100
committerAdam Vandenberg2013-11-17 12:53:40 -0800
commit6ace0c8fa33cb1f18077649b911b218adb168f0e (patch)
tree2972cf7db68926d787d9229307acd6ad51838b5c /Library/Formula
parent8dff5bab25862da77afc7ee1b296368a5feb8494 (diff)
downloadhomebrew-6ace0c8fa33cb1f18077649b911b218adb168f0e.tar.bz2
cliclick 2.3.1
Closes #23925. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cliclick.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/cliclick.rb b/Library/Formula/cliclick.rb
new file mode 100644
index 000000000..3c4feb7fe
--- /dev/null
+++ b/Library/Formula/cliclick.rb
@@ -0,0 +1,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