fix(*): Makes sure to declare openssl dependency for formulae
Closes #10. Signed-off-by: Taylor Thomas <taylor@cosmonic.com> Signed-off-by: Brooks Townsend <brooks@cosmonic.com> Signed-off-by: Taylor Thomas <taylor@oftaylor.com>
This commit is contained in:
parent
836d6ff1cd
commit
aa2531b758
|
|
@ -6,6 +6,11 @@ class Wash < Formula
|
|||
license "Apache-2.0"
|
||||
|
||||
depends_on "rust" => :build
|
||||
depends_on "openssl@1.1"
|
||||
|
||||
on_linux do
|
||||
depends_on "zlib"
|
||||
end
|
||||
|
||||
def install
|
||||
system "cargo", "install", *std_cargo_args
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ class Wasmcloud < Formula
|
|||
end
|
||||
|
||||
depends_on "rust" => :build
|
||||
depends_on "openssl@1.1"
|
||||
|
||||
def install
|
||||
system "cargo", "install", *std_cargo_args
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
# wasmCloud Homebrew tap
|
||||
|
||||
## Using
|
||||
|
||||
To use this tap:
|
||||
|
||||
```console
|
||||
$ brew tap wasmcloud/wasmcloud
|
||||
```
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Release documentation
|
||||
|
||||
To release a new version of the formula and automatically bottle, use the following steps:
|
||||
|
||||
1. Open a PR with the changes and wait for the tests to pass
|
||||
1. Once the tests pass, add the `pr-pull` tag to the PR. This will trigger the release and close the PR (it will push the commits for you)
|
||||
Loading…
Reference in New Issue