确定为使用自制软件安装的软件包提供的标志
当使用自制软件安装软件包时,是否有办法检查给出了哪些标志? 例如,emacs公式具有大量的标志。如果我做了 brew install emacs --with-glib --with-librsvg 我想稍后确定,对于emacs的自制安装,我给出了这些标志--with-glib --with-librsvg,而不给出其他任何标志。 带lua包的测试用例: 在安装软件包之前,信息会显示所有选项。 $ brew info lua lua: stable 5.2.3 (bottled) http://www.lua.org/ Not installed From: https://github.com/Homebrew/homebrew/blob/master/Library/Formula/lua.rb ==> Options --universal Build a universal binary --with-completion Enables advanced readline support --without-sigaction Revert to ANSI signal instead of improved POSIX sigaction 我只安装带有--with-completion标志的软件包。 $ brew install …