mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 04:09:09 +00:00
commit
8fd8a3c1df
1 changed files with 17 additions and 0 deletions
17
Formula/lune.rb
Normal file
17
Formula/lune.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue