From b5dbcfec7b370c8887f902ffab30e504fef91976 Mon Sep 17 00:00:00 2001 From: Jack Programs <52725440+jackprogramsjp@users.noreply.github.com> Date: Thu, 24 Aug 2023 23:29:57 -0700 Subject: [PATCH] Remove Formula, link to Homebrew Core's instead --- Formula/lune.rb | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 Formula/lune.rb diff --git a/Formula/lune.rb b/Formula/lune.rb deleted file mode 100644 index 72c5a9a..0000000 --- a/Formula/lune.rb +++ /dev/null @@ -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