diff options
| author | Halvard Skogsrud | 2012-08-06 23:19:05 +1000 |
|---|---|---|
| committer | Adam Vandenberg | 2012-09-07 09:16:27 -0700 |
| commit | 6290212bf0176a0824df027b6889d61c2d9c9e53 (patch) | |
| tree | a17ed201eb0814f3e4228269991559c65861182b /Library/Formula | |
| parent | 2ed89400cfe17ca2b09a168dff6d45e199e1671e (diff) | |
| download | homebrew-6290212bf0176a0824df027b6889d61c2d9c9e53.tar.bz2 | |
Cntlm 0.92.3
Cntlm is an NTLM authenticating HTTP proxy which is very useful if you
work in a company with a Windows based proxy for outgoing Internet
traffic. It sits between your applications and the corporate proxy,
adding NTLM authentication on-the-fly.
Compared to alternatives like NTLMAPS, Cntlm is small, fast and has no
dependencies.
Closes #14004.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/cntlm.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/cntlm.rb b/Library/Formula/cntlm.rb new file mode 100644 index 000000000..24e98e921 --- /dev/null +++ b/Library/Formula/cntlm.rb @@ -0,0 +1,20 @@ +require 'formula' + +class Cntlm < Formula + homepage 'http://cntlm.sourceforge.net/' + url 'http://sourceforge.net/projects/cntlm/files/cntlm/cntlm%200.92.3/cntlm-0.92.3.tar.bz2' + sha1 '9b68a687218dd202c04b678ba8c559edba6f6f7b' + + def install + system "./configure" + system "make", "CC=#{ENV.cc}", "SYSCONFDIR=#{etc}" + # install target fails - @adamv + bin.install "cntlm" + man1.install "doc/cntlm.1" + etc.install "doc/cntlm.conf" + end + + def caveats + "Edit #{etc}/cntlm.conf to configure Cntlm" + end +end |
