aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libotr.rb
diff options
context:
space:
mode:
authorAlexis Hildebrandt2009-12-28 01:11:14 +0100
committerMax Howell2010-01-23 12:21:14 +0000
commitb84591ef77020a86b11dc4e432c1d243482680a5 (patch)
tree9bbbdee402c9505d51325c6384ecd7ba85024385 /Library/Formula/libotr.rb
parent699348b5e7ce1d4b890e14aa8f89302f3964782a (diff)
downloadhomebrew-b84591ef77020a86b11dc4e432c1d243482680a5.tar.bz2
Libotr 3.2.0
This is the portable OTR Messaging Library, as well as the toolkit to help you forge messages. Off-the-Record (OTR) Messaging allows you to have private conversations over instant messaging by providing: - Encryption: No one else can read your instant messages - Authentication: You are assured the correspondent is who you think it is - Deniability: The messages you send do not have digital signatures that are checkable by a third party. Anyone can forge messages after a conversation to make them look like they came from you. However, during a conversation, your correspondent is assured the messages he sees are authentic and unmodified - Perfect forward secrecy: If you lose control of your private keys, no previous conversation is compromised.
Diffstat (limited to 'Library/Formula/libotr.rb')
-rw-r--r--Library/Formula/libotr.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/libotr.rb b/Library/Formula/libotr.rb
new file mode 100644
index 000000000..5cf0a4479
--- /dev/null
+++ b/Library/Formula/libotr.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Libotr <Formula
+ url 'http://www.cypherpunks.ca/otr/libotr-3.2.0.tar.gz'
+ homepage 'http://www.cypherpunks.ca/otr/'
+ md5 'faba02e60f64e492838929be2272f839'
+
+ depends_on 'libgcrypt'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end