blob: 645e3cfe5d7686f16fcb6ea3d43596ff660b528a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
require "formula"
class Capnp < Formula
homepage "http://kentonv.github.io/capnproto/"
url "http://capnproto.org/capnproto-c++-0.5.0.tar.gz"
sha1 "5eec5929d9b64628b2e7b6646369f112079a1f61"
bottle do
sha1 "c73a3d2118d22e1741cea71b5557a98f1f9123d3" => :yosemite
sha1 "25029d69b65d8cb98dc5015a9c215e5109e889ba" => :mavericks
sha1 "06576d9fbc1ee122828bf7f41ceb5cb12bc41a32" => :mountain_lion
end
needs :cxx11
option "without-shared", "Disable building shared library variant"
def install
args = ["--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"]
args << "--disable-shared" if build.without? "shared"
system "./configure", *args
system "make", "check"
system "make", "install"
end
test do
system "#{bin}/capnp", "--version"
end
end
|