formula是用來描述所安裝軟件的信息,包括軟件鏡像位置、軟件構建方式、安裝方式...好比查看maven的formula,經過下面命令java
brew cat maven
你能夠看到下面這些,這就是maven的formula文件描述apache
require 'formula' class Maven < Formula homepage 'http://maven.apache.org/' url 'http://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.tar.gz' # sha1 '1ce6641f7dcb4fd5785bedcdca2979da83f6d23f' sha1 '41009327d5494e0e8970b25b77ffed8934cd7ca1' def install # Remove windows files rm_f Dir["bin/*.bat"] # Fix the permissions on the global settings file. chmod 0644, 'conf/settings.xml' prefix.install_metafiles libexec.install Dir['*'] # Leave conf file in libexec. The mvn symlink will be resolved and the conf # file will be found relative to it bin.install_symlink Dir["#{libexec}/bin/*"] - ["#{libexec}/bin/m2.conf"] end test do (testpath/'pom.xml').write <<-EOS.undent <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.homebrew</groupId> <artifactId>maven-test</artifactId> <version>1.0.0-SNAPSHOT</version> </project> EOS (testpath/'src/main/java/org/homebrew/MavenTest.java').write <<-EOS.undent package org.homebrew; public class MavenTest { public static void main(String[] args) { System.out.println("Testing Maven with Homebrew!"); } } EOS system "#{bin}/mvn", 'compile' end end
有時候是頗有必要更新或定製你須要安裝軟件的formula文件描述,好比個人系統更新到OS 10.11時安裝maven時發現老是下載失敗,失敗緣由就是formula文件描述的maven鏡像有問題,這時咱們直接修改formula的鏡像描述,問題就能夠解決,能夠經過下面命令就能夠編輯了windows
brew edit maven