aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libotr.rb
blob: 9a83e8f1a05cc77c9d717ba8a685dd3a0c2d3a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Libotr < Formula
  url 'http://www.cypherpunks.ca/otr/libotr-3.2.0.tar.gz'
  homepage 'http://www.cypherpunks.ca/otr/'
  sha1 'e5e10b8ddaf59b0ada6046d156d0431cd2790db9'

  depends_on 'libgcrypt'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{man}"
    system "make install"
  end
end