libotr: style nits

master
Adam Vandenberg 2013-01-28 21:20:43 -08:00
parent 1ef8292949
commit 1273f88bc7
1 changed files with 4 additions and 2 deletions

View File

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