本文介绍了Homebrew公式是否可以接受带有`install`值的选项,例如`--foo = bar`?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道Homebrew公式可以检查传递给brew install的布尔选项(--with-foo--without-bar).

I know that a Homebrew formula can check Boolean options (--with-foo, --without-bar) passed to brew install.

brew install可以接受带有值的选项,例如--foo=/path/to/bar吗?

Can brew install accept options with values, like --foo=/path/to/bar?

推荐答案

事实证明您可以使用ARGV.value.

例如

option "with-bin-path=", "Path for binary path"
# ...
binpath = ARGV.value("with-bin-path")

请参见 https://github.com/Homebrew/brew/issues/1803

这篇关于Homebrew公式是否可以接受带有`install`值的选项,例如`--foo = bar`?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 12:03