blob: 17a31f660f5d06026434a6226ef2a2c301e58484 (
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.1.tar.gz'
sha1 '898bf00d019f49ca34cd0116dd2e22685c67c394'
depends_on 'libgcrypt'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|