lune-packaging/Formula/lune.rb

18 lines
434 B
Ruby
Raw Normal View History

2023-07-29 07:53:19 +01:00
class Lune < Formula
2023-07-29 19:42:28 +01:00
LUNE_VERSION = "0.7.5"
2023-07-29 07:53:19 +01:00
desc "Standalone Luau script runtime 🌙"
homepage "https://lune-org.github.io/docs"
2023-07-29 19:42:28 +01:00
url "https://github.com/filiptibell/lune/releases/download/v#{LUNE_VERSION}/lune-#{LUNE_VERSION}-macos-x86_64.zip"
sha256 "3c9cb328d7c3049354c714021ba857ce83ded3da4ac4b4a2a046fb2116e0bd2e"
2023-07-29 07:53:19 +01:00
license "MPL-2.0"
def install
2023-07-29 19:42:28 +01:00
bin.install "lune"
2023-07-29 07:53:19 +01:00
end
test do
system "false"
end
end