blob: d4cb4adccdbac6d8e489c316768b685055d8c94d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Libotr < Formula
homepage 'http://www.cypherpunks.ca/otr/'
url 'http://www.cypherpunks.ca/otr/libotr-3.2.1.tar.gz'
sha1 '898bf00d019f49ca34cd0116dd2e22685c67c394'
revision 1
depends_on 'libgcrypt'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|