homebrew-core/Formula/libotr.rb
Alexis Hildebrandt 9228e595cf Update Formula: libotr
Correct manpage installation path

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-14 10:07:21 -07:00

14 lines
379 B
Ruby

require 'formula'
class Libotr <Formula
url 'http://www.cypherpunks.ca/otr/libotr-3.2.0.tar.gz'
homepage 'http://www.cypherpunks.ca/otr/'
md5 'faba02e60f64e492838929be2272f839'
depends_on 'libgcrypt'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{man}"
system "make install"
end
end