homebrew-core/Formula/libotr.rb

17 lines
441 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libotr < Formula
homepage 'http://www.cypherpunks.ca/otr/'
2013-01-29 05:20:43 +00:00
url 'http://www.cypherpunks.ca/otr/libotr-3.2.0.tar.gz'
sha1 'e5e10b8ddaf59b0ada6046d156d0431cd2790db9'
depends_on 'libgcrypt'
def install
2013-01-29 05:20:43 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end