Skip to content

Commit

Permalink
support brew tab
Browse files Browse the repository at this point in the history
Signed-off-by: “huazhongming” <[email protected]>
  • Loading branch information
CrazyHZM committed Nov 18, 2024
1 parent 40fc4d0 commit 0883ad5
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
*.log*
.vscode
.idea
.test
.out
!./.gitignore
.DS_Store

# Idea
*.iml

# git
*.orig

17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Layotto's Homebrew Tap

## Setup

Install [Homebrew](https://brew.sh) for macOS.

## Install Layotto Runtime

Install on macOS:

```sh
brew install layotto/tap/layotto
```

## Generate new version.

Automated via GitHub action, runs every 5 minutes.
20 changes: 20 additions & 0 deletions layotto.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Documentation: https://docs.brew.sh/Formula-Cookbook
# https://rubydoc.brew.sh/Formula
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!
class Layotto < Formula
desc "A fast and efficient cloud native application runtime"
homepage "http://mosn.io/layotto/"
url "https://github.com/mosn/layotto/releases/download/v0.5.0/layotto.darwin_arm64.zip"
sha256 "9a6b10517d53d56513d72254a7638c39829b6b632cfe1fc621a7ccc11eb658b4"
license "Apache-2.0"

end

def install
bin.install "layotto"
end

test do
system "false"
end
end

0 comments on commit 0883ad5

Please sign in to comment.