Skip to content

Commit 1610f59

Browse files
authored
Update manage-modules.md
1 parent 00fa640 commit 1610f59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/operate/get-started/other-hardware/manage-modules.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ At the end of your <file>meta.json</file>, add the build configuration:
9494
"build": "./build.sh", // command that will build your module's tarball
9595
"path" : "dist/archive.tar.gz", // optional - path to your built module tarball
9696
"arch" : ["linux/amd64", "linux/arm64", "darwin/arm64"], // architecture(s) to build for
97-
"darwin_deps" : ["go", "x264", "nlopt-static"] // optional - Homebrew dependencies for Darwin builds. Explicitly pass `[]` for empty. Default : ["go", "pkg-config", "nlopt-static", "x264", "jpeg-turbo", "ffmpeg"].
97+
"darwin_deps" : ["go", "x264", "nlopt-static"] // optional - Homebrew dependencies for Darwin builds. Explicitly pass `[]` for empty.
9898
}
9999
}
100100
```
@@ -107,7 +107,7 @@ At the end of your <file>meta.json</file>, add the build configuration:
107107
| `"build"` | **Required** | Command to run to build the module tarball. |
108108
| `"path"` | Optional | Path to the build module tarball. |
109109
| `"arch"` | **Required** | Array of architectures to build for. Options: `"any"`, `"linux/any"`, `"darwin/any"`, `"any/amd64"`, `"any/arm64"`, `"any/arm32v6"`, `"any/arm32v7"`, `"linux/amd64"`, `"linux/arm64"`, `"linux/arm32v6"`, `"linux/arm32v7"`, `"darwin/amd64"`, `"darwin/arm64"`, `"windows/amd64"`. For more information see [Supported platforms for automatic updates](#supported-platforms-for-automatic-updates). |
110-
| `"darwin_deps"` | Optional | TODO |
110+
| `"darwin_deps"` | **Required** | Array of homebrew dependencies for Darwin builds. Explicitly pass `[]` for empty. Default: `["go", "pkg-config", "nlopt-static", "x264", "jpeg-turbo", "ffmpeg"]` |
111111

112112
{{% /expand %}}
113113

0 commit comments

Comments
 (0)