blob: 2fd0043810fc79cbd1f6467cd39599ba2590f128 (
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
34
35
36
37
38
|
require 'formula'
class Capnp < Formula
homepage 'http://kentonv.github.io/capnproto/'
url 'http://capnproto.org/capnproto-c++-0.4.0.tar.gz'
sha1 '1d356a0229a9c6b3665930a4b166b91cba03825b'
# TODO add fails_with statements for FSF GCC
fails_with :gcc do
cause "Cap'n Proto requires C++11 support"
end
fails_with :gcc_4_0 do
cause "Cap'n Proto requires C++11 support"
end
fails_with :clang do
build 425
cause "Clang 3.2 or newer is required to build Cap'n Proto"
end
fails_with :llvm do
cause "Cap'n Proto requires C++11 support"
end
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "check"
system "make", "install"
end
test do
system "#{bin}/capnp", "--version"
end
end
|