Remove Formula, link to Homebrew Core's instead

This commit is contained in:
Jack Programs 2023-08-24 23:29:57 -07:00
parent c4214c9559
commit b5dbcfec7b

View file

@ -1,18 +0,0 @@
class Lune < Formula
desc "Standalone Luau script runtime"
homepage "https://lune-org.github.io/docs"
url "https://github.com/filiptibell/lune/archive/refs/tags/v0.7.7.tar.gz"
sha256 "f6311720ede916d520a427c04be469cd59cb2359a4ca7bc4b8abedaa8c3691ed"
license "MPL-2.0"
depends_on "rust" => :build
def install
system "cargo", "install", "--all-features", *std_cargo_args
end
test do
(testpath/"test.lua").write("print(2 + 2)")
assert_equal "4", shell_output("#{bin}/lune test.lua").chomp
end
end