You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
319 B
15 lines
319 B
2 years ago
|
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
|