From 38357d480341c11466f4ad0fb88c98171e7125df Mon Sep 17 00:00:00 2001 From: Jack Murrow <52725440+jackprogramsjp@users.noreply.github.com> Date: Fri, 28 Jul 2023 23:53:19 -0700 Subject: [PATCH] added formulae for homebrew lune --- Formula/lune.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Formula/lune.rb diff --git a/Formula/lune.rb b/Formula/lune.rb new file mode 100644 index 0000000..dc081c2 --- /dev/null +++ b/Formula/lune.rb @@ -0,0 +1,17 @@ +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.5.tar.gz" + sha256 "e8191df5d6844026772cc7afab1083235a265c506474c4c4dee0a7724b04f775" + license "MPL-2.0" + + depends_on "rust" => :build + + def install + system "cargo", "install", "--locked", "--root", prefix, "--path", "./packages/cli" + end + + test do + system "false" + end +end \ No newline at end of file