戴武华 před 5 roky
rodič
revize
48004cc71c
1 změnil soubory, kde provedl 12 přidání a 0 odebrání
  1. 12 0
      Formula/clangd.rb

+ 12 - 0
Formula/clangd.rb

@@ -0,0 +1,12 @@
+class Clangd < Formula
+  desc "clangd understands your C++ code and adds smart features to your editor: code completion, compile errors, go-to-definition and more."
+  homepage "https://clang.llvm.org/extra/clangd/index.html"
+  url "http://releases.llvm.org/9.0.0/clang+llvm-9.0.0-x86_64-darwin-apple.tar.xz"
+  sha256 "b46e3fe3829d4eb30ad72993bf28c76b1e1f7e38509fbd44192a2ef7c0126fc7"
+
+  def install
+    bin.install "bin/clangd"
+    lib.install Dir["lib/clang/*"]
+  end
+
+end