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