blob: d4fb92f1e3ce26d954016544b37eb8609e1e71ba (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | require 'formula'
class Libotr < Formula
  homepage 'https://otr.cypherpunks.ca/'
  url 'https://otr.cypherpunks.ca/libotr-4.1.0.tar.gz'
  sha1 'df30bc87a7a8f37678dd679d17fa1f9638ea247e'
  bottle do
    cellar :any
    sha1 "e3a4f4ed938279c649562da5f47589cd260876af" => :yosemite
    sha1 "2fddebe58059fe7dcc3bfebd862051c8c7b8f417" => :mavericks
    sha1 "bbd9c6938ade7c5208c472aba7b65581eb9a210b" => :mountain_lion
  end
  depends_on "libgcrypt"
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}"
    system "make install"
  end
end
 |