homebrew-core/Formula/clang-format.rb
2017-12-02 06:42:19 -08:00

80 lines
2.6 KiB
Ruby

class ClangFormat < Formula
desc "Formatting tools for C, C++, Obj-C, Java, JavaScript, TypeScript"
homepage "https://clang.llvm.org/docs/ClangFormat.html"
version "2017-11-14"
stable do
if MacOS.version >= :sierra
url "https://llvm.org/svn/llvm-project/llvm/tags/google/stable/2017-11-14/", :using => :svn
else
url "http://llvm.org/svn/llvm-project/llvm/tags/google/stable/2017-11-14/", :using => :svn
end
resource "clang" do
if MacOS.version >= :sierra
url "https://llvm.org/svn/llvm-project/cfe/tags/google/stable/2017-11-14/", :using => :svn
else
url "http://llvm.org/svn/llvm-project/cfe/tags/google/stable/2017-11-14/", :using => :svn
end
end
end
bottle do
cellar :any_skip_relocation
sha256 "0612cd7fa1318527ee5701f44f57cc9d1de732bc22c494746918545ed6dc2566" => :high_sierra
sha256 "00e9f4400c72e3e2367133e5a9e7361bafd8e4374cfbe10ca72652e33e3325a9" => :sierra
sha256 "5312b09ff9c6e055b3f605cbbbde964ad701cf4613b5706b21bd225c582e12fc" => :el_capitan
end
head do
if MacOS.version >= :sierra
url "https://llvm.org/svn/llvm-project/llvm/trunk/", :using => :svn
else
url "http://llvm.org/svn/llvm-project/llvm/trunk/", :using => :svn
end
resource "clang" do
if MacOS.version >= :sierra
url "https://llvm.org/svn/llvm-project/cfe/trunk/", :using => :svn
else
url "http://llvm.org/svn/llvm-project/cfe/trunk/", :using => :svn
end
end
end
depends_on "cmake" => :build
depends_on "ninja" => :build
depends_on "subversion" => :build
resource "libcxx" do
url "https://releases.llvm.org/5.0.0/libcxx-5.0.0.src.tar.xz"
sha256 "eae5981e9a21ef0decfcac80a1af584ddb064a32805f95a57c7c83a5eb28c9b1"
end
def install
(buildpath/"projects/libcxx").install resource("libcxx")
(buildpath/"tools/clang").install resource("clang")
mkdir "build" do
args = std_cmake_args
args << "-DCMAKE_OSX_SYSROOT=/" unless MacOS::Xcode.installed?
args << "-DLLVM_ENABLE_LIBCXX=ON"
args << ".."
system "cmake", "-G", "Ninja", *args
system "ninja", "clang-format"
bin.install "bin/clang-format"
end
bin.install "tools/clang/tools/clang-format/git-clang-format"
(share/"clang").install Dir["tools/clang/tools/clang-format/clang-format*"]
end
test do
# NB: below C code is messily formatted on purpose.
(testpath/"test.c").write <<-EOS
int main(char *args) { \n \t printf("hello"); }
EOS
assert_equal "int main(char *args) { printf(\"hello\"); }\n",
shell_output("#{bin}/clang-format -style=Google test.c")
end
end