38 lines
1.3 KiB
Ruby
38 lines
1.3 KiB
Ruby
class Hana < Formula
|
|
desc "The Boost.Hana C++14 metaprogramming library"
|
|
homepage "https://github.com/boostorg/hana"
|
|
url "https://github.com/boostorg/hana/archive/v1.1.0.tar.gz"
|
|
sha256 "bb33358842300524fbac61710850a349771ae125fba16f3c39a047a15c9bcfb9"
|
|
head "https://github.com/boostorg/hana.git", :branch => "develop"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "e2af425805e68fd5ebf4e327f1f7eb0484b2579b04c898a4ea8134d359197629" => :sierra
|
|
sha256 "e2af425805e68fd5ebf4e327f1f7eb0484b2579b04c898a4ea8134d359197629" => :el_capitan
|
|
sha256 "e2af425805e68fd5ebf4e327f1f7eb0484b2579b04c898a4ea8134d359197629" => :yosemite
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on :macos => :yosemite
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<-EOS.undent
|
|
#include <boost/hana.hpp>
|
|
|
|
constexpr auto xs = boost::hana::make_tuple(1, '2', 3.3);
|
|
static_assert(xs[boost::hana::size_c<0>] == 1, "");
|
|
static_assert(xs[boost::hana::size_c<1>] == '2', "");
|
|
static_assert(xs[boost::hana::size_c<2>] == 3.3, "");
|
|
|
|
int main() { }
|
|
EOS
|
|
|
|
system ENV.cxx, "test.cpp", "-std=c++1y", "-I#{include}", "-otest", *ENV.cppflags
|
|
system "./test"
|
|
end
|
|
end
|