a2bafa27f8
Kills ssl2 from OpenSSL. This PR relates to Homebrew/homebrew#31745. Force recompiles everything that relies on OpenSSL from the master branch to enforce the new OpenSSL no-ssl2 rule.
24 lines
503 B
Ruby
24 lines
503 B
Ruby
require 'formula'
|
|
|
|
class Ori < Formula
|
|
homepage 'http://ori.scs.stanford.edu/'
|
|
url 'https://bitbucket.org/orifs/ori/downloads/ori-0.8.1.tgz'
|
|
sha1 '3ad31ab14bdb9305423f66cb919fdc445215f3c9'
|
|
revision 1
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'scons' => :build
|
|
depends_on 'boost'
|
|
depends_on 'osxfuse'
|
|
depends_on 'libevent'
|
|
depends_on 'openssl'
|
|
|
|
def install
|
|
scons "BUILDTYPE=RELEASE"
|
|
scons "install", "PREFIX=#{prefix}"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/ori"
|
|
end
|
|
end
|