blob: f4c3846ce96d7f74d0f2f4330b6f5f37236279f7 (
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
|
class Metashell < Formula
homepage "https://github.com/sabel83/metashell"
url "https://github.com/sabel83/metashell/archive/v2.0.0.tar.gz"
sha1 "4dec47b6ee32cdf179b2eb297c289b296d3fba8f"
depends_on "cmake" => :build
needs :cxx11
def install
ENV.cxx11
# Build internal Clang
mkdir "templight/build" do
system "cmake", "../llvm", "-DLIBCLANG_BUILD_STATIC=ON", *std_cmake_args
system "make", "clang"
system "make", "libclang"
system "make", "libclang_static"
end
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make", "install"
end
end
test do
(testpath/"test.hpp").write <<-EOS.undent
template <class T> struct add_const { using type = const T; };
add_const<int>::type
EOS
assert_match /const int/, shell_output("cat #{testpath}/test.hpp | #{bin}/metashell -H")
end
end
|