23 lines
652 B
Ruby
23 lines
652 B
Ruby
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
|