blob: 668b959d4232e3d1df3d7de6fb91a670bd13cd96 (
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
|
require "formula"
class Cereal < Formula
homepage "http://uscilab.github.io/cereal/"
url "https://github.com/USCiLab/cereal/archive/v1.0.0.tar.gz"
sha1 "a8e409deb2bdba6bdbc04d3eb2d5294d4cc4b9e2"
head "https://github.com/USCiLab/cereal.git", :branch => "develop"
bottle do
cellar :any
sha1 "6adcd84314611446fb8926455217e207a47993be" => :mavericks
sha1 "5d9e8b45dbe08eaad5fe3088e70036a27d7ff581" => :mountain_lion
sha1 "47344b6e499bf21f54f6a59a462a9ada773f8a5e" => :lion
end
option "with-tests", "Build and run the test suite"
depends_on "cmake" => :build if build.with? "tests"
def install
if build.with? "tests"
system "cmake", ".", *std_cmake_args
system "make"
system "make", "test"
end
include.install "include/cereal"
end
end
|