Merge pull request #207012 from Homebrew/bump-tailwindcss-4.0.5
[Homebrew/homebrew-core.git] / Formula / e / erlang_ls.rb
blobc189136ef657906d9f78c6898484793f0b13e7d6
1 class ErlangLs < Formula
2   desc "Erlang Language Server"
3   homepage "https://erlang-ls.github.io/"
4   url "https://github.com/erlang-ls/erlang_ls/archive/refs/tags/1.1.0.tar.gz"
5   sha256 "b826edae46219a90ab6a162be1626e2f4b0fd60cb2f3372d7a171ee3921aebf0"
6   license "Apache-2.0"
8   bottle do
9     sha256 cellar: :any_skip_relocation, arm64_sequoia: "bc89472e09f589b8a7f2fce292740b647bbd99f2dab7270cda175c942d74abcb"
10     sha256 cellar: :any_skip_relocation, arm64_sonoma:  "4f2307d98a124af2ff6ea5e9289f3de2cc0f40e9efa97d68874e90cdcad09a26"
11     sha256 cellar: :any_skip_relocation, arm64_ventura: "16b38a612902bccc962a17a08195f2eed0c1f2bf73653a19c6e19262af63cf96"
12     sha256 cellar: :any_skip_relocation, sonoma:        "c25d4a54ebfdb777c9845e87962815e609269cbc0e5fa012e1e97bc8d5fdd510"
13     sha256 cellar: :any_skip_relocation, ventura:       "555f68cb1034010a6915ccc739262e4e3e731d0f92cf0c0d88e3743ad874616d"
14     sha256 cellar: :any_skip_relocation, x86_64_linux:  "6c68b4f50a62cb9956ba11796d8c0f38ba88cdefc1977af46f8a7871c60f402a"
15   end
17   depends_on "erlang"
18   depends_on "rebar3"
20   def install
21     system "make", "PREFIX=#{prefix}", "install"
22   end
24   test do
25     output = pipe_output(bin/"erlang_ls", nil, 1)
26     assert_match "Content-Length", output
27   end
28 end