Skip to content

Commit

Permalink
feat: perform docs and skip big sur
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyar committed Jan 27, 2021
1 parent 142e0bf commit 0e0ba3f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/building.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
matrix:
platform:
- { on: ubuntu-20.04, name: linux }
- { on: macos-11.0, name: big sur }
- { on: macos-10.15, name: catalina }
# This check failed 🤷 - { on: macos-11.0, name: big sur }
runs-on: ${{ matrix.platform.on }}
name: ${{ matrix.platform.name }}
steps:
Expand Down
33 changes: 28 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ It is Homebrew tap for simple and convenient distribution of software for work a

Homebrew — The Missing Package Manager for macOS or Linux or Windows 10 Subsystem for Linux, see more on the project website [brew.sh](https://docs.brew.sh/Installation).

Binary bottles are currently available only for:

- `x86_64_linux`
- `catalina`

## FAQ

1. [What does brew tap mean?](https://docs.brew.sh/Taps)
Expand All @@ -23,10 +28,9 @@ Install software:
brew install tonos-cli
brew install ton-sdk
brew install tvm-solc
brew install tvm-linker

> Due to the lack of a stable tag for `tvm-linker`, you must install from the master, see [ISSUE#2](https://github.com/tonsoft/homebrew-stable/issues/2).
brew install --head tvm-linker
> Due to the lack of a stable tag for `tvm-linker`, at current moment used tag from fork see [ISSUE#2](https://github.com/tonsoft/homebrew-stable/issues/2).
### Upgrade

Expand All @@ -36,6 +40,25 @@ Install software:

### New Formula

Create new a formula see `brew create --help`, edit if need and test installation:

brew install --verbose $(pwd)/Formula/$nameFormula.rb
### Create new a formula

For help see `brew create --help` and [Formula Cookbook](https://docs.brew.sh/Formula-Cookbook).

brew create --tap tonsoft/stable --set-name new-formula-name URL

### Edit if need and testing

code $(brew --repository tonsoft/stable)/Formula/new-formula-name.rb
brew style tonsoft/stable
brew audit --tap=tonsoft/stable
brew install new-formula-name

### Create PR

cd $(brew --repository tonsoft/stable)
git remote add self fork
git checkout -b add-new-formula-name
git add Formula/new-formula-name.rb
git commit -m "feat: add new-formula-name"
git push self add-new-formula-name

0 comments on commit 0e0ba3f

Please sign in to comment.