aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libotr.rb
diff options
context:
space:
mode:
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