blob: 4795fb23a8171c7aa3c1f7691f18301b03a0cfff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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'
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
|