diff --git a/fennel-ls.rb b/fennel-ls.rb new file mode 100644 index 0000000..2cfec26 --- /dev/null +++ b/fennel-ls.rb @@ -0,0 +1,14 @@ +class FennelLs < Formula + desc "A language server for Fennel" + homepage "https://git.sr.ht/~xerool/fennel-ls" + head "https://git.sr.ht/~xerool/fennel-ls", branch: "main" + + # depends_on "cmake" => :build + depends_on "fennel" + depends_on "lua" + + def install + system "make" + bin.install "fennel-ls" + end +end