diff options
| author | Carsten Blüm | 2013-11-03 17:40:26 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-17 12:53:40 -0800 |
| commit | 6ace0c8fa33cb1f18077649b911b218adb168f0e (patch) | |
| tree | 2972cf7db68926d787d9229307acd6ad51838b5c /Library/Formula | |
| parent | 8dff5bab25862da77afc7ee1b296368a5feb8494 (diff) | |
| download | homebrew-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.rb | 18 |
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 |
